Header menu logo BioFSharp

BlastP Module

DSL for blastp programs The blastp application searches a protein sequence against protein subject sequences or a protein database. Three different tasks are supported: 1.) “blastp”, for standard protein-protein comparisons 2.) “blastp-short”, optimized for query sequences shorter than 30 residues 3.) “blastp-fast”, a faster version that uses a larger word-size

Types

Type Description

BlastPFastParameters

use this type to specify specific and generic command line parameters for the blastp blastp-fast task like this:

let myParams = [

     BlastPFastParameters.CommonOptions [...]

     BlastPFastParameters.SpecificOptions [...]
]

BlastPFastParams

DSL fo the blastp 'blastp-fast' task command line options blastp-fast is a faster version that uses a larger word-size

BlastPParameters

use this type to specify specific and generic command line parameters for the blastp task like this:

let myParams = [

     BlastPParameters.CommonOptions [...]

     BlastPParameters.SpecificOptions [...]
]

BlastPParams

DSL fo the blastp 'blastp' task command line options blastp is used for standard protein-protein comparisons

BlastPShortParameters

use this type to specify specific and generic command line parameters for the blastp blastp-short task like this:

let myParams = [

     BlastPShortParameters.CommonOptions [...]

     BlastPShortParameters.SpecificOptions [...]
]

BlastPShortParams

DSL fo the blastp 'blastp-short' task command line options blastp-short is optimized for query sequences shorter than 30 residues

Type something to start searching.