Peptide class

A model representation of a peptide sequence.

Inheritance

Constructors

Peptide({required String seq, String? name, String? id, String? desc})

Properties

desc String
Returns the sequence description.
getter/setter pairinherited
hashCode int
The hash code for this object.
no setterinherited
id String
Returns the sequence ID.
getter/setter pairinherited
len int
Returns the number of monomers in the sequence.
no setterinherited
name String
Returns the sequence name.
getter/setter pairinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
seq String
Returns the sequence.
no setterinherited
type String
Returns the sequence type.
no setterinherited

Methods

combinations({dynamic sorted = false}) List<String>
Returns every possible combination of this sequence.
inherited
difference({required Sequence oSeq}) int
Returns the number of monomer differences between this sequence and oSeq.
inherited
findMotif({required String motif, dynamic overlap = true}) Map<String, dynamic>
Returns the indices of all motif matches.
inherited
freq({bool norm = false, bool ignoreStopAA = false}) Map<String, double>
Returns the frequency of each monomer.
inherited
info() Map<String, dynamic>
Returns information about the this sequence.
inherited
lenMinus({required String monomer}) int
Returns the length of this sequence with monomer removed.
inherited
monoMass({int decimals = 2, dynamic kDa = false}) double
Returns the monoisotopic mass (Da) of this sequence.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
reverse() String
Returns the reversed version of this sequence.
inherited
sharedMotif({required Sequence oSeq}) String
Returns the longest shared motif between this sequence and oSeq.
inherited
splice({required String motif}) String
Returns this sequence with all occurrences of motif removed.
inherited
toFASTA({required String path, required String filename}) Future<void>
Saves this sequence to a local file in FASTA format.
inherited
toString() String
Returns a String representation of the info() function.
inherited

Operators

operator +(Sequence oSeq) String
Returns the String sequence combination between this and oSeq.
inherited
operator ==(Object other) bool
The equality operator.
inherited

Static Methods

random({required int len}) Peptide
Returns a Peptide object with a specified length of len.