-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/test' into prod
- Loading branch information
Showing
9 changed files
with
80,002 additions
and
8 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
#!/usr/bin/env cwl-runner | ||
label: "Produce Roary input" | ||
doc: "Produce Prokka and Roary ready GFF enhancement = GFF + nuc FASTA" | ||
cwlVersion: v1.2 | ||
class: CommandLineTool | ||
baseCommand: cat | ||
requirements: | ||
- class: InlineJavascriptRequirement | ||
- class: InitialWorkDirRequirement | ||
listing: | ||
- entryname: separator.txt | ||
entry: ${ return inputs.separator + '\n'; } | ||
inputs: | ||
gff: | ||
type: File? | ||
inputBinding: | ||
position: 1 | ||
separator: | ||
type: string? | ||
default: '### FASTA' | ||
separator_file: | ||
type: string? | ||
default: 'separator.txt' | ||
inputBinding: | ||
position: 2 | ||
fasta: | ||
type: File? | ||
inputBinding: | ||
position: 3 | ||
output_name: | ||
type: string? | ||
default: 'annot_with_genomic_fasta.gff' | ||
stdout: $(inputs.output_name) | ||
outputs: | ||
output: | ||
type: stdout |
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
71,139 changes: 71,139 additions & 0 deletions
71,139
progs/unit_tests/test_produce_enhanced_gff/annot.fna
Large diffs are not rendered by default.
Oops, something went wrong.
8,731 changes: 8,731 additions & 0 deletions
8,731
progs/unit_tests/test_produce_enhanced_gff/annot.gff
Large diffs are not rendered by default.
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,6 @@ | ||
gff: | ||
class: File | ||
location: annot.gff | ||
fasta: | ||
class: File | ||
location: annot.fna |
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