| Strands {SMRUCC.genomics.ComponentModel.Loci} | .NET clr documentation |
The direction of this segment on the nucleotide sequence. (片段在DNA链上面的方向或者是否为互补链, KEGG网站上面的cutsequence 函数之中的VECTOR参数也和本枚举值所表述的含义一致, 正义链为1,互补链为-1值)
# namespace SMRUCC.genomics.ComponentModel.Loci
export class Strands extends Enum {
# The loci site was on the DNA complement strand.
[@desc "-"]
Reverse: Strands = -1;
# I really don't know what the direction of the loci site it is.
[@desc "?"]
Unknown: Strands = 0;
# The loci site was on the DNA sequence.
[@desc "+"]
Forward: Strands = 1;
}
Reverse: StrandsUnknown: StrandsForward: Strands