tidesurf.transcript.GTFLine#
- class tidesurf.transcript.GTFLine(chromosome: str, source: str, feature: str, start: int, end: int, score: str, strand: Strand, frame: str, attributes: Dict[str, str])#
Bases:
objectA line from a GTF file, corresponding to particular genomic feature.
- Parameters:
- chromosome str
Chromosome of the feature.
- source str
Source of the feature.
- feature str
Type of feature.
- start int
Genomic start position of feature (0-based).
- end int
Genomic end position of feature (0-based).
- score str
Feature score.
- strand Strand
Strand of the feature.
- frame str
Frame of the feature.
- attributes Dict[str, str]
Additional attributes of the feature.
Attributes
Additional attributes of the feature.
Chromosome of the feature.
Genomic end position of the feature (0-based).
Type of feature.
Frame of the feature.
Feature score.
Source of the feature.
Genomic start position of the feature (0-based).
Strand of the feature.