Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Facultative CAM in Talinum
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
Dominik Brilhaus
Facultative CAM in Talinum
Merge requests
!19
Arc cwl
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Arc cwl
arc-cwl
into
main
Overview
0
Commits
12
Pipelines
2
Changes
1
Merged
Dominik Brilhaus
requested to merge
arc-cwl
into
main
2 months ago
Overview
0
Commits
12
Pipelines
2
Changes
1
Expand
0
0
Merge request reports
Viewing commit
20380646
Prev
Next
Show latest version
1 file
+
47
−
47
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
20380646
try fix indentation
· 20380646
Dominik Brilhaus
authored
2 months ago
workflows/kallisto/workflow.cwl
+
47
−
47
Options
@@ -8,56 +8,56 @@ requirements:
InlineJavascriptRequirement: {}
inputs:
IndexInput: File[]
sampleRecord:
type:
type: array
items:
type: record
fields:
readsOfOneSample:
type: File[]
sampleName:
type: string?
isSingle: boolean
FragmentLength: double?
StandardDeviation: double?
BootstrapSamples: int?
resultsFolder: string
IndexInput: File[]
sampleRecord:
type:
type: array
items:
type: record
fields:
readsOfOneSample:
type: File[]
sampleName:
type: string?
isSingle: boolean
FragmentLength: double?
StandardDeviation: double?
BootstrapSamples: int?
resultsFolder: string
steps:
index:
run: kallisto-index.cwl
in:
InputFiles: IndexInput
IndexName:
source: IndexInput
valueFrom: $(self[0].nameroot)
out: [index]
index:
run: kallisto-index.cwl
in:
InputFiles: IndexInput
IndexName:
source: IndexInput
valueFrom: $(self[0].nameroot)
out: [index]
quant:
run: kallisto-quant.cwl
scatter: [InputReads, QuantOutfolder]
scatterMethod: dotproduct
in:
InputReads:
source: sampleRecord
valueFrom: $(self.readsOfOneSample)
QuantOutfolder:
source: sampleRecord
valueFrom: $(self.sampleName)
Index: index/index
isSingle: isSingle
FragmentLength: FragmentLength
StandardDeviation: StandardDeviation
BootstrapSamples: BootstrapSamples
out: [kallistoQuantOutDir]
collectResults:
run: ./gather-dirs.cwl
in:
inDirs: quant/kallistoQuantOutDir
destinationDir: resultsFolder
out: [outDir]
quant:
run: kallisto-quant.cwl
scatter: [InputReads, QuantOutfolder]
scatterMethod: dotproduct
in:
InputReads:
source: sampleRecord
valueFrom: $(self.readsOfOneSample)
QuantOutfolder:
source: sampleRecord
valueFrom: $(self.sampleName)
Index: index/index
isSingle: isSingle
FragmentLength: FragmentLength
StandardDeviation: StandardDeviation
BootstrapSamples: BootstrapSamples
out: [kallistoQuantOutDir]
collectResults:
run: ./gather-dirs.cwl
in:
inDirs: quant/kallistoQuantOutDir
destinationDir: resultsFolder
out: [outDir]
outputs:
kallistoOutDir:
Loading