-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fq trimming #37
Open
brentp
wants to merge
28
commits into
main
Choose a base branch
from
trimmer
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
fq trimming #37
Changes from 4 commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
150c4be
WIP: fq stuff
brentp 0957ea3
change max_diffs to max_overlap_error_rate
brentp 73f78b8
renaming
brentp e2bdcfa
start of CLI stuff.
brentp f48a5c3
we have readers and writers
brentp 476ebfc
reading and writing fastqs
brentp fe8af74
actually correct based on overlap
brentp 9d54bec
moving average and base-quality
brentp 884dca3
match input output names to Tim's example
brentp 5efdf45
parsing of operations enum
brentp a164b37
main execution loop
brentp a4083b7
copy Tim's oscillation detection from python to rust
brentp 38f077c
more efficient identify_trim_point for oscillations
brentp bb4a10f
prevent some underflows
brentp d56a65a
stub out stats
brentp 1ea71c0
cleanup stats
brentp a68e6e3
try to clarify option usage.
brentp e21631a
more stats
brentp fc58ca1
bug fixes and read length stats
brentp 5b3043e
naming and length hist update
brentp 6201ea1
add Cargo.lock
brentp 7a2e646
logging in pair overlap
brentp 987d34e
warn that output files are always bgzipped
brentp 7263c5c
fix erroneous warning about .gz extension
brentp c351467
clippy: PathBuf -> Path
brentp 62258d7
fix case where there is no overhang from R1
brentp 2ee4d93
handle no overhang in r1 with adapter in r2
brentp 382e2a6
Io::is_gzip_path
brentp File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cna we use: https://github.com/fulcrumgenomics/fgoxide/blob/e3a3068c451d8a06491e499075032e2075c41e7c/src/io/mod.rs#L56
Or better yet:
https://github.com/fulcrumgenomics/fgoxide/blob/e3a3068c451d8a06491e499075032e2075c41e7c/src/io/mod.rs#L82C8-L82C20
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
see: fulcrumgenomics/fgoxide#11