Conversation
|
|
||
|
|
||
| def reverse_complement(sequence, inplace=False): | ||
| def reverse_complement(sequence: Seq, inplace: bool = False) -> str: |
|
|
||
|
|
||
| def reverse_complement_rna(sequence, inplace=False): | ||
| def reverse_complement_rna(sequence: Seq, inplace: bool = False) -> str: |
|
|
||
|
|
||
| def complement(sequence, inplace=False): | ||
| def complement(sequence: Seq, inplace: bool = False) -> str: |
|
|
||
|
|
||
| def complement_rna(sequence, inplace=False): | ||
| def complement_rna(sequence: Seq, inplace: bool = False) -> str: |
| def translate( | ||
| sequence, table="Standard", stop_symbol="*", to_stop=False, cds=False, gap=None | ||
| ): | ||
| sequence: Seq, |
| def _translate_str( | ||
| sequence, table, stop_symbol="*", to_stop=False, cds=False, pos_stop="X", gap=None | ||
| ): | ||
| sequence: Seq, |
* In some cases a new, temporary variable called `encoded_sequence` was used as that value has a different type. * In 3 places attr-defined had to be ignored as mypy complained about missing methods in SeqRecord. This probably needs to be addressed.
Labels
None yet