Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Samuilov-2018-BOU-PSP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
HHU Plant Biochemistry
Samuilov-2018-BOU-PSP
Merge requests
!2
Re build rnaseq
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Re build rnaseq
reBuild-rnaseq
into
main
Overview
0
Commits
9
Pipelines
0
Changes
3
Merged
Dominik Brilhaus
requested to merge
reBuild-rnaseq
into
main
1 year ago
Overview
0
Commits
9
Pipelines
0
Changes
3
Expand
0
0
Merge request reports
Viewing commit
12ee9429
Prev
Next
Show latest version
3 files
+
104
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
12ee9429
add kallisto pe workflow
· 12ee9429
Dominik Brilhaus
authored
1 year ago
runs/kallisto_quant-pe/run.cwl
0 → 100644
+
45
−
0
Options
#!/usr/bin/env cwl-runner
cwlVersion: v1.2
class: CommandLineTool
hints:
DockerRequirement:
dockerPull: quay.io/biocontainers/kallisto:0.43.0--hdf51.8.17_2
inputs:
- id: sh_script
type: File
inputBinding:
position: 0
- id: out_folder
type: string
inputBinding:
position: 1
- id: in_kallisto_index
type: File
inputBinding:
position: 2
- id: in_fastq_dir
type: Directory
inputBinding:
position: 3
- id: kallisto_bootstrap
type: int
inputBinding:
position: 4
- id: kallisto_threads
type: int
inputBinding:
position: 5
outputs:
- id: outdir
type:
type: array
items: Directory
outputBinding:
glob: $(runtime.outdir)/$(inputs.out_folder)
baseCommand:
- bash
Loading