-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #800 from broadinstitute/dp-genbank
genbank and other new WDL workflows
- Loading branch information
Showing
12 changed files
with
223 additions
and
145 deletions.
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 was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import "reports.wdl" as reports | ||
|
||
workflow coverage_table { | ||
call reports.coverage_report | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import "interhost.wdl" as interhost | ||
import "ncbi.wdl" as ncbi | ||
|
||
workflow genbank { | ||
|
||
File reference_fasta | ||
Array[File]+ assemblies_fasta # one per genome | ||
Array[File]+ ref_annotations_tbl # one per chromosome | ||
call interhost.multi_align_mafft_ref as mafft { | ||
input: | ||
reference_fasta = reference_fasta, | ||
assemblies_fasta = assemblies_fasta | ||
} | ||
|
||
call ncbi.annot_transfer as annot { | ||
input: | ||
multi_aln_fasta = mafft.alignments_by_chr, | ||
reference_fasta = reference_fasta, | ||
reference_feature_table = ref_annotations_tbl | ||
} | ||
|
||
call ncbi.prepare_genbank as prep_genbank { | ||
input: | ||
assemblies_fasta = assemblies_fasta, | ||
annotations_tbl = annot.transferred_feature_tables | ||
} | ||
|
||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import "interhost.wdl" as interhost | ||
|
||
workflow mafft { | ||
call interhost.multi_align_mafft | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import "demux.wdl" as demux | ||
|
||
workflow merge_bams { | ||
call demux.merge_and_reheader_bams | ||
} |
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
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
Oops, something went wrong.