Skip to content

Commit

Permalink
Fix linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
apcamargo committed Jan 24, 2025
1 parent 1e8b7f4 commit 4de47d9
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/python.rs
Original file line number Diff line number Diff line change
Expand Up @@ -315,13 +315,13 @@ fn parse_fastx_string(content: &str) -> PyResult<PyFastxReader> {

/// Normalize the sequence string of nucleotide records by:
///
/// - Converting lowercase characters to uppercase.
/// - Removing whitespace and newline characters.
/// - Replacing 'U' with 'T'.
/// - Replacing '.' and '~' with '-'.
/// - Replacing characters not in 'ACGTN-' with 'N', unless `iupac` is set
/// to `True`, in which case characters representing nucleotide ambiguity
/// are not replaced.
/// - Converting lowercase characters to uppercase.
/// - Removing whitespace and newline characters.
/// - Replacing 'U' with 'T'.
/// - Replacing '.' and '~' with '-'.
/// - Replacing characters not in 'ACGTN-' with 'N', unless `iupac` is `True`,
/// in which case characters representing nucleotide ambiguity are not
/// replaced.
///
/// Parameters
/// ----------
Expand Down

0 comments on commit 4de47d9

Please sign in to comment.