-
Notifications
You must be signed in to change notification settings - Fork 0
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 #3 from mskcc/dev_oncokb_file
Dev oncokb file
- Loading branch information
Showing
6 changed files
with
61 additions
and
6 deletions.
There are no files selected for viewing
Submodule Goliath
updated
8 files
+9 −5 | README.md | |
+16 −4 | bin/genReport.R | |
+19 −6 | bin/genReportAll.R | |
+3 −1 | data/methods.md | |
+4 −2 | load_data.R | |
+0 −25 | test/test01.R | |
+1 −2 | utils.R | |
+1 −1 | version.R |
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,48 @@ | ||
#!/usr/bin/env cwl-runner | ||
|
||
# concatenate tables; keep the header from the first file, then all lines minus header from all files | ||
# strip the header comments that start with '#' | ||
cwlVersion: v1.0 | ||
class: Workflow | ||
|
||
requirements: | ||
ScatterFeatureRequirement: {} | ||
StepInputExpressionRequirement: {} | ||
InlineJavascriptRequirement: {} | ||
DockerRequirement: | ||
dockerPull: mskcc/argos_report:1.0.3 | ||
|
||
inputs: | ||
request_id: | ||
type: string | ||
sample_ids: | ||
type: string[] | ||
portal_dir: | ||
type: Directory | ||
analysis_dir: | ||
type: Directory | ||
oncokb_file: | ||
type: File | ||
|
||
steps: | ||
generate_project_report: | ||
run: report.cwl | ||
in: | ||
request_id: request_id | ||
sample_id: sample_ids | ||
portal_dir: portal_dir | ||
analysis_dir: analysis_dir | ||
oncokb_file: oncokb_file | ||
|
||
scatter: sample_id | ||
scatterMethod: dotproduct | ||
out: [output_file] | ||
|
||
|
||
outputs: | ||
output_file: | ||
type: File[] | ||
outputSource: generate_project_report/output_file | ||
|
||
|
||
|
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