Skip to content
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

Integration of taxonomic classifier trainer wdl #459

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
Open
26 changes: 26 additions & 0 deletions pipes/WDL/workflows/16S_train_classifier.wdl
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
version 1.0
golu099 marked this conversation as resolved.
Show resolved Hide resolved

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
}
}