-
Notifications
You must be signed in to change notification settings - Fork 90
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
13 changed files
with
192 additions
and
52 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
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,21 @@ | ||
#!/usr/bin/env cwl-runner | ||
label: "gc_extract_ids" | ||
class: CommandLineTool | ||
baseCommand: gc_extract_ids | ||
cwlVersion: v1.0 | ||
inputs: | ||
input: | ||
type: File | ||
inputBinding: | ||
prefix: -input | ||
output_name: | ||
type: string? | ||
default: gencoll.ids | ||
inputBinding: | ||
prefix: -output | ||
outputs: | ||
output: | ||
type: File | ||
outputBinding: | ||
glob: $(inputs.output_name) | ||
|
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,67 @@ | ||
cwlVersion: v1.0 | ||
label: "gpx_qsubmit" | ||
doc: > | ||
This workflow is specialized for the case when there is an XML input | ||
|
||
class: CommandLineTool | ||
requirements: | ||
- class: InlineJavascriptRequirement | ||
- class: InitialWorkDirRequirement | ||
listing: | ||
- entry: ${ var cs=0; var s=inputs.asn_cache.length-1; var as = cs; if(as >= s) {as = s }; return inputs.asn_cache[as]; } | ||
writable: False | ||
- entry: ${ var cs=1; var s=inputs.asn_cache.length-1; var as = cs; if(as >= s) {as = s }; return inputs.asn_cache[as]; } | ||
writable: False | ||
|
||
baseCommand: gpx_qsubmit | ||
inputs: | ||
affinity: | ||
type: string? | ||
default: subject | ||
inputBinding: | ||
prefix: -affinity | ||
asn_cache: | ||
type: Directory[]? | ||
inputBinding: | ||
prefix: -asn-cache | ||
itemSeparator: "," | ||
batch_size: | ||
type: int? | ||
inputBinding: | ||
prefix: -batch-size | ||
max_batch_length: | ||
type: int? | ||
inputBinding: | ||
prefix: -max-batch-length | ||
nogenbank: | ||
type: boolean? | ||
inputBinding: | ||
# prefix: -nogenbank # commenting this as a hail mary | ||
NxM_threshold: | ||
type: int? | ||
inputBinding: | ||
prefix: -NxM-threshold | ||
overlap: | ||
type: int? | ||
inputBinding: | ||
prefix: -overlap | ||
subseq_size: | ||
type: int? | ||
inputBinding: | ||
prefix: -subseq-size | ||
xml_jobs: | ||
type: File? | ||
inputBinding: | ||
prefix: -xml-jobs | ||
output_xml_jobs: | ||
type: string | ||
default: jobs.xml | ||
inputBinding: | ||
prefix: -o | ||
|
||
|
||
outputs: | ||
jobs: | ||
type: File | ||
outputBinding: | ||
glob: $(inputs.output_xml_jobs) |
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.