QualitativeSequence Constructor (IAlphabet, FastQFormatType, String, String, Boolean) |
Initializes a new instance of the QualitativeSequence class with specified alphabet, quality score type,
string representing symbols and encoded quality scores.
Namespace: BioAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public QualitativeSequence(
IAlphabet alphabet,
FastQFormatType fastQFormatType,
string sequence,
string encodedQualityScores,
bool validate
)
Public Sub New (
alphabet As IAlphabet,
fastQFormatType As FastQFormatType,
sequence As String,
encodedQualityScores As String,
validate As Boolean
)
public:
QualitativeSequence(
IAlphabet^ alphabet,
FastQFormatType fastQFormatType,
String^ sequence,
String^ encodedQualityScores,
bool validate
)
new :
alphabet : IAlphabet *
fastQFormatType : FastQFormatType *
sequence : string *
encodedQualityScores : string *
validate : bool -> QualitativeSequence
Parameters
- alphabet
- Type: BioIAlphabet
Alphabet to which this instance should conform. - fastQFormatType
- Type: BioFastQFormatType
FastQ format type. - sequence
- Type: SystemString
A string representing the symbols. - encodedQualityScores
- Type: SystemString
A string representing the encoded quality scores. - validate
- Type: SystemBoolean
If this flag is true then validation will be done to see whether the data is valid or not,
else validation will be skipped.
See Also