-
Notifications
You must be signed in to change notification settings - Fork 157
Adding ONT read support for ampliseq #1026
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
Merged
+1,798
−175
Merged
Changes from 16 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
13d21dc
add chopper, porechop, and savont
d4straub ae8ba7c
fix linting
d4straub 5b69e2e
use toSortedList() instead of toList()
d4straub 6b5c6fb
update CHANGELOG and CITATIONS
d4straub daa5d9f
add read count check after chopper
d4straub 142137b
amend output docs for Savont
d4straub f310220
update tests and add savont.nf.test.snap
d4straub 2bfb25c
generate chopper and savont read count stats
d4straub 75eb23b
add cutadapt to test_savont
d4straub f7c7a27
update .snap with cutadapt and additional stats
d4straub 8fea71a
re-order .snap to fix tests
d4straub 61b0eb8
preset for ITSXRust and amend docs
d4straub 601a5fe
fix missing line in output docu
d4straub 9ba0c20
add porechop_abi, chopper, and savont to summary report
d4straub 7cf14a9
fix summary report input for porechop_abi
d4straub d36f112
reduce script length to aloow parsing with NXF_VER=25.10.4
d4straub 65702dd
adjust channel names, typos, rm todos
d4straub 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 hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -50,7 +50,7 @@ jobs: | |
| env: | ||
| NFT_VER: ${{ env.NFT_VER }} | ||
| with: | ||
| max_shards: 16 | ||
| max_shards: 17 | ||
|
|
||
| - name: debug | ||
| run: | | ||
|
|
||
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| #!/bin/bash | ||
|
|
||
| awk ' | ||
| NR == 1 { | ||
| # Extract sample names from header (skip first column) | ||
| for (i = 2; i <= NF; i++) { | ||
| samples[i-1] = $i | ||
| } | ||
| num_samples = NF - 1 | ||
| next | ||
| } | ||
| { | ||
| # Accumulate counts for each sample | ||
| for (i = 2; i <= NF; i++) { | ||
| totals[samples[i-1]] += $i | ||
| } | ||
| } | ||
| END { | ||
| print "sample\tsavont_output" | ||
| # Print in order of first appearance | ||
| for (i = 1; i <= num_samples; i++) { | ||
| print samples[i] "\t" totals[samples[i]] | ||
| } | ||
| } | ||
| ' "$1" |
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.