UtilFasta class

Constructors

UtilFasta()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

read(String fastaData, {EnumNucleotideSequenceType type = EnumNucleotideSequenceType.dna}) List<NucleotideSequence>
(en) The FASTA file data is converted into NucleotideSequence for each record and returned.
readByFastaRecord(String fastaData) List<FastaRecord>
(en) The FASTA file data is converted into a class for each record and returned. It is convenient to use this when you want to operate the array data as String type.
write(NucleotideSequence seq, String description) String
(en) Convert from NucleotideSequence to FASTA file.
writeFromFastaRecord(FastaRecord record) String
(en) Convert from FastaRecord to FASTA file.