Skip to content

Commit

Permalink
adding normal_id as an input
Browse files Browse the repository at this point in the history
  • Loading branch information
Suleyman Vural committed Jul 22, 2024
1 parent 1f48278 commit 5566a5a
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Goliath
Submodule Goliath updated 2 files
+13 −5 load_argos.R
+19 −28 load_data.R
11 changes: 7 additions & 4 deletions cwl/project_level_report.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,14 @@ requirements:
StepInputExpressionRequirement: {}
InlineJavascriptRequirement: {}
DockerRequirement:
dockerPull: mskcc/argos_report:1.0.6
dockerPull: mskcc/argos_report:dev

inputs:
request_id:
type: string
sample_ids:
tumor_ids:
type: string[]
normal_ids:
type: string[]
portal_dir:
type: Directory
Expand All @@ -29,12 +31,13 @@ steps:
run: report.cwl
in:
request_id: request_id
sample_id: sample_ids
tumor_id: tumor_ids
normal_id: normal_ids
portal_dir: portal_dir
analysis_dir: analysis_dir
oncokb_file: oncokb_file

scatter: sample_id
scatter: [tumor_id, normal_id]
scatterMethod: dotproduct
out: [output_file]

Expand Down
17 changes: 11 additions & 6 deletions cwl/report.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -5,33 +5,38 @@ class: CommandLineTool
baseCommand: [ "compile_sample_level.R" ]
requirements:
DockerRequirement:
dockerPull: mskcc/argos_report:1.0.6
dockerPull: mskcc/argos_report:dev

inputs:
request_id:
type: string
inputBinding:
position: 1
prefix: '--request_id'
sample_id:
tumor_id:
type: string
inputBinding:
position: 2
prefix: '--sample_id'
prefix: '--tumor_id'
normal_id:
type: string
inputBinding:
position: 3
prefix: '--normal_id'
portal_dir:
type: Directory
inputBinding:
position: 3
position: 4
prefix: '--portal_dir'
analysis_dir:
type: Directory
inputBinding:
position: 4
position: 5
prefix: '--analysis_dir'
oncokb_file:
type: File
inputBinding:
position: 5
position: 6
prefix: '--oncokb_file'


Expand Down

0 comments on commit 5566a5a

Please sign in to comment.