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
cwlVersion: v1.2
class: Workflow
class: CommandLineTool
inputs:
in_sleuth:
type: File
out_folder:
type: string
- id: r_script
type: File
inputBinding:
position: 0
- id: in_sleuth
type: File
inputBinding:
position: 1
- id: out_folder
type: string
inputBinding:
position: 2
outputs:
out_dir:
type:
type: array
items: Directory
outputSource: kallisto_sleuth/outdir
steps:
kallisto_sleuth:
run: ../../workflows/kallisto_sleuth/workflow.cwl
in:
in_sleuth: in_sleuth
out_folder: out_folder
out: [outdir]
- id: outdir
type:
type: array
items: Directory
outputBinding:
glob: $(runtime.outdir)/$(inputs.out_folder)
baseCommand:
- Rscript
cores: 1
r_script:
class: File
path: ../../workflows/kallisto_sleuth/kallisto_sleuth.R
in_sleuth:
class: File
path: ../kallisto_collect/kallisto_sleuthObject.RData
path: ../kallisto_collect/out/kallisto_sleuthObject.RData
out_folder: out
#!/usr/bin/env Rscript
################################################
### Diff. gene expression with sleuth ##########
################################################
################################################
#### CWL-independent tests
################################################
# arc_root <- "~/gitlab_dataplant/samplearc_rnaseq_adrian/"
# in_sleuth <- "runs/kallisto_collect/kallisto_sleuthObject.RData"
# out_folder <- "runs/kallisto_sleuth"
### Diff. gene expression with sleuth
################################################
#### Load required library
################################################
library(sleuth)
################################################
#### 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