Skip to content

Commit

Permalink
Add a to-do list to the beggining of the file
Browse files Browse the repository at this point in the history
  • Loading branch information
apcamargo authored Jan 23, 2025
1 parent 01fe91e commit 78d8a7f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/python.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
//! Python bindings for needletail
// TODO:
// - Add support for `pathlib.Path` objects in `parse_fastx_file`.
// - Make `normalize_seq` and `reverse_complement` functions able to handle
// `Record` objects as input.

use crate::sequence::{complement, normalize};
use crate::{
parse_fastx_file as rs_parse_fastx_file, parse_fastx_reader, parser::SequenceRecord,
Expand Down Expand Up @@ -244,9 +249,6 @@ impl Record {
}
}

// TODO: what would be really nice is to detect the type of pyobject so it would on file object etc
// not for initial release though

/// An iterator that reads sequence records from a FASTA/FASTQ file.
///
/// Parameters
Expand Down

0 comments on commit 78d8a7f

Please sign in to comment.