Skip to content
Snippets Groups Projects
Commit f31bbdea authored by Dominik Brilhaus's avatar Dominik Brilhaus
Browse files

docker-free kallisto sleuth

parent fe52b95a
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env cwl-runner #!/usr/bin/env cwl-runner
cwlVersion: v1.2 cwlVersion: v1.2
class: Workflow class: CommandLineTool
inputs: inputs:
in_sleuth: - id: r_script
type: File type: File
out_folder: inputBinding:
type: string position: 0
- id: in_sleuth
type: File
inputBinding:
position: 1
- id: out_folder
type: string
inputBinding:
position: 2
outputs: outputs:
out_dir: - id: outdir
type: type:
type: array type: array
items: Directory items: Directory
outputSource: kallisto_sleuth/outdir outputBinding:
steps: glob: $(runtime.outdir)/$(inputs.out_folder)
kallisto_sleuth:
run: ../../workflows/kallisto_sleuth/workflow.cwl baseCommand:
in: - Rscript
in_sleuth: in_sleuth
out_folder: out_folder
out: [outdir]
cores: 1 cores: 1
r_script:
class: File
path: ../../workflows/kallisto_sleuth/kallisto_sleuth.R
in_sleuth: in_sleuth:
class: File class: File
path: ../kallisto_collect/kallisto_sleuthObject.RData path: ../kallisto_collect/out/kallisto_sleuthObject.RData
out_folder: out out_folder: out
#!/usr/bin/env Rscript #!/usr/bin/env Rscript
################################################
### Diff. gene expression with sleuth ##########
################################################
################################################
#### CWL-independent tests
################################################
# arc_root <- "~/gitlab_dataplant/samplearc_rnaseq_adrian/" ### Diff. gene expression with sleuth
# in_sleuth <- "runs/kallisto_collect/kallisto_sleuthObject.RData"
# out_folder <- "runs/kallisto_sleuth"
################################################ ################################################
#### Load required library #### Load required library
################################################ ################################################
library(sleuth) library(sleuth)
################################################ ################################################
#### Read arguments from CLI #### Read arguments from CLI
################################################ ################################################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment