DerivedSequence Constructor |
Initializes a new instance of the DerivedSequence class.
Namespace: BioAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public DerivedSequence(
ISequence sequence,
bool reverseSequence,
bool complementSequence
)
Public Sub New (
sequence As ISequence,
reverseSequence As Boolean,
complementSequence As Boolean
)
public:
DerivedSequence(
ISequence^ sequence,
bool reverseSequence,
bool complementSequence
)
new :
sequence : ISequence *
reverseSequence : bool *
complementSequence : bool -> DerivedSequence
Parameters
- sequence
- Type: BioISequence
Base sequence to use. - reverseSequence
- Type: SystemBoolean
Flag to indicate if the derived sequence should be reversed. - complementSequence
- Type: SystemBoolean
Flag to indicate if the derived sequence should be complemented.
See Also