PairwiseSequenceAlignmentRemove Method |
Removes item from the list of aligned sequences in the PairwiseSequenceAlignment.
Throws exception if PairwiseSequenceAlignment is read only.
Namespace: Bio.Algorithms.AlignmentAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public bool Remove(
PairwiseAlignedSequence item
)
Public Function Remove (
item As PairwiseAlignedSequence
) As Boolean
public:
virtual bool Remove(
PairwiseAlignedSequence^ item
) sealed
abstract Remove :
item : PairwiseAlignedSequence -> bool
override Remove :
item : PairwiseAlignedSequence -> bool
Parameters
- item
- Type: Bio.Algorithms.AlignmentPairwiseAlignedSequence
Aligned sequence object.
Return Value
Type:
BooleanTrue if item was removed, false if item was not found.
Implements
ICollectionTRemove(T)See Also