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
!14
Cwl
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Cwl
cwl
into
main
Overview
0
Commits
4
Pipelines
2
Changes
1
Merged
Dominik Brilhaus
requested to merge
cwl
into
main
2 months ago
Overview
0
Commits
4
Pipelines
2
Changes
1
Expand
0
0
Merge request reports
Viewing commit
c67b71f2
Prev
Next
Show latest version
1 file
+
18
−
24
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
c67b71f2
replace sampleRecord logic in kallisto
· c67b71f2
Dominik Brilhaus
authored
2 months ago
workflows/kallisto/workflow.cwl
+
18
−
24
Options
@@ -8,20 +8,18 @@ requirements:
@@ -8,20 +8,18 @@ requirements:
inputs:
inputs:
IndexInput: File[]
IndexInput: File[]
InputReadsMultipleSamples
:
sampleRecord
:
type:
type:
type: array
type: array
items:
items:
type: array
type: record
items: File
fields:
# numCharsFileName:
readsOfOneSample:
# type: int
type: File[]
# default: 6
sampleName:
numUnderscoresFileName:
type: string?
type: int
default: 2
isSingle: boolean
isSingle: boolean
FragmentLength: double?
FragmentLength: double?
StandardDeviation: double?
StandardDeviation: double?
BootstrapSamples: int?
BootstrapSamples: int?
resultsFolder: string
resultsFolder: string
@@ -31,28 +29,24 @@ steps:
@@ -31,28 +29,24 @@ steps:
run: kallisto-index.cwl
run: kallisto-index.cwl
in:
in:
InputFiles: IndexInput
InputFiles: IndexInput
IndexName:
IndexName:
source: IndexInput
source: IndexInput
valueFrom: $(self[0].nameroot)
valueFrom: $(self[0].nameroot)
out: [index]
out: [index]
quant:
quant:
run: kallisto-quant.cwl
run: kallisto-quant.cwl
scatter:
scatter: [InputReads, QuantOutfolder]
- InputReads
- QuantOutfolder
scatterMethod: dotproduct
scatterMethod: dotproduct
in:
in:
InputReads: InputReadsMultipleSamples
InputReads:
# numChars:
source: sampleRecord
# source: numCharsFileName
valueFrom: $(self.readsOfOneSample)
numUnderscores: numUnderscoresFileName
QuantOutfolder:
QuantOutfolder:
source: InputReadsMultipleSamples
source: sampleRecord
# valueFrom: $(self[0].nameroot.substring(0, inputs.numChars))
valueFrom: $(self.sampleName)
valueFrom: $(self[0].nameroot.split('_').slice(0, inputs.numUnderscores).join('_'))
Index: index/index
Index: index/index
isSingle: isSingle
isSingle: isSingle
FragmentLength: FragmentLength
FragmentLength: FragmentLength
StandardDeviation: StandardDeviation
StandardDeviation: StandardDeviation
BootstrapSamples: BootstrapSamples
BootstrapSamples: BootstrapSamples
out: [outFolder]
out: [outFolder]
Loading