Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/python.rs
Original file line number Diff line number Diff line change
Expand Up @@ -188,11 +188,11 @@ impl Record {
/// --------
/// normalize_seq: A function to normalize nucleotide sequence strings.
///
// Notes
// -----
// The `normalize` method is designed for nucleotide sequences only. If
// used with protein sequences, it will incorrectly process amino acid
// characters as if they were nucleotides.
/// Notes
/// -----
/// The `normalize` method is designed for nucleotide sequences only. If
/// used with protein sequences, it will incorrectly process amino acid
/// characters as if they were nucleotides.
#[pyo3(signature = (iupac=false))]
pub fn normalize(&mut self, iupac: bool) -> PyResult<()> {
if let Some(s) = normalize(self.seq.as_bytes(), iupac) {
Expand Down
Loading