TMRNAGene#
- class pyaragorn.TMRNAGene(Gene)#
A transfer-messenger RNA (tmRNA) gene.
Example
>>> rna_finder = pyaragorn.RNAFinder(11, trna=False, tmrna=True) >>> tmrna = rna_finder.find_rna(str(record.seq))[0] >>> tmrna.begin, tmrna.end (198037, 198447) >>> tmrna.peptide() 'AEKNEENFEMPAFMINNASAGANYMFA**'
- orf(include_stop=True)#
Retrieve the open-reading frame of the mRNA-like region.
- peptide(include_stop=True)#
Retrieve the peptide sequence of the mRNA-like region.
- sequence()#
Retrieve the full sequence of the RNA gene.
- begin#
The sequence coordinate at which the gene begins.
Hint
This coordinate is 1-based, inclusive. To use it to index a Python array or string, subtract one.
- Type:
- end#
The sequence coordinate at which the gene end.
Hint
This coordinate is 1-based, inclusive. To use it to index a Python array or string, subtract one.
- Type: