Skip to content

Commit

Permalink
Remove dependency on parser library
Browse files Browse the repository at this point in the history
  • Loading branch information
sampsyo committed Mar 17, 2024
1 parent d588d5b commit d2eb84c
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 162 deletions.
158 changes: 1 addition & 157 deletions polbin/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion polbin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ edition = "2021"
[dependencies]
argh = "0.1.12"
bstr = "1.9.1"
gfa = "0.10.1"
memmap = "0.7.0"
num_enum = "0.7.2"
zerocopy = { version = "0.7.32", features = ["derive"] }
Expand Down
4 changes: 0 additions & 4 deletions polbin/src/gfaline.rs
Original file line number Diff line number Diff line change
Expand Up @@ -210,10 +210,6 @@ fn parse_align(s: &[u8]) -> PartialParseResult<Vec<AlignOp>> {
}

/// Parse GFA paths' segment lists. These look like `1+,2-,3+`.
///
/// The underlying gfa-rs library does not yet parse the actual segments
/// involved in the path. So we do it ourselves: splitting on commas and
/// matching the direction.
pub struct StepsParser<'a> {
str: &'a [u8],
index: usize,
Expand Down

0 comments on commit d2eb84c

Please sign in to comment.