-
Notifications
You must be signed in to change notification settings - Fork 29
Integration of taxonomic classifier trainer wdl #459
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
Open
golu099
wants to merge
14
commits into
master
Choose a base branch
from
fn_training_classifier_2
base: master
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
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
34cdc54
Seperating 16S train classifier and annotations into different branches.
golu099 67ebdc8
Update pipes/WDL/workflows/16S_train_classifier.wdl
golu099 88d5ab4
Adding parameter meta to tasks_16S_amplicon.wdl
golu099 64f53a4
Addresing bugs
golu099 3d39533
addressing bug fixes
golu099 069cff6
addressing rbracket
golu099 53b2e6b
fixing bugs
34f2720
Merge branch 'master' into fn_training_classifier_2
dpark01 5769ccd
Update pipes/WDL/workflows/train_16S_classifier.wdl
golu099 dc7b948
Update pipes/WDL/tasks/tasks_16S_amplicon.wdl
golu099 e5aca1a
Update pipes/WDL/tasks/tasks_16S_amplicon.wdl
golu099 307458b
Update pipes/WDL/workflows/train_16S_classifier.wdl
golu099 444f30d
Fixing missing block in training_16S_classifier
golu099 1a440dc
Merge remote-tracking branch 'origin/master' into fn_training_classif…
golu099 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
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,26 @@ | ||
| version 1.0 | ||
|
|
||
| import "../tasks/tasks_16S_amplicon.wdl" as qiime | ||
|
|
||
| workflow train_classifier_16S { | ||
golu099 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| meta { | ||
| description: "User imports OTU database that will be trained on your primer sequences." | ||
| author: "Broad Viral Genomics" | ||
| email: "[email protected]" | ||
golu099 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| allowNestedInputs: true | ||
| } | ||
| input { | ||
| File otu_ref | ||
golu099 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| File taxanomy_ref | ||
| String forward_adapter | ||
| String reverse_adapter | ||
| } | ||
|
|
||
| call qiime.train_classifier { | ||
| input: | ||
| otu_ref = otu_ref, | ||
| taxanomy_ref = taxanomy_ref, | ||
| forward_adapter = forward_adapter, | ||
| reverse_adapter = reverse_adapter | ||
| } | ||
| } | ||
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,20 @@ | ||
| version 1.0 | ||
|
|
||
| import "../tasks/tasks_16S_amplicon.wdl" as qiime | ||
|
|
||
| workflow train_16S_classifier { | ||
| meta { | ||
| description: "User imports OTU database that will be trained on your primer sequences. All outputs can be visualized using https://view.qiime2.org/" | ||
| author: "Broad Viral Genomics" | ||
| email: "[email protected]" | ||
| allowNestedInputs: true | ||
| } | ||
| call qiime.train_classifier{ | ||
| input: | ||
| otu_ref = otu_ref, | ||
| taxonomy_ref = taxonomy_ref, | ||
| forward_adapter = forward_adapter, | ||
| reverse_adapter = reverse_adapter | ||
|
|
||
| } | ||
| } |
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.