Skip to content

Commit f88cb3b

Browse files
apcamargoaudy
authored andcommitted
Fix linting issue
1 parent d89e9a1 commit f88cb3b

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/python.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -315,13 +315,13 @@ fn parse_fastx_string(content: &str) -> PyResult<PyFastxReader> {
315315

316316
/// Normalize the sequence string of nucleotide records by:
317317
///
318-
/// - Converting lowercase characters to uppercase.
319-
/// - Removing whitespace and newline characters.
320-
/// - Replacing 'U' with 'T'.
321-
/// - Replacing '.' and '~' with '-'.
322-
/// - Replacing characters not in 'ACGTN-' with 'N', unless `iupac` is set
323-
/// to `True`, in which case characters representing nucleotide ambiguity
324-
/// are not replaced.
318+
/// - Converting lowercase characters to uppercase.
319+
/// - Removing whitespace and newline characters.
320+
/// - Replacing 'U' with 'T'.
321+
/// - Replacing '.' and '~' with '-'.
322+
/// - Replacing characters not in 'ACGTN-' with 'N', unless `iupac` is `True`,
323+
/// in which case characters representing nucleotide ambiguity are not
324+
/// replaced.
325325
///
326326
/// Parameters
327327
/// ----------

0 commit comments

Comments
 (0)