Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cellranger_mkfastq
Manage
Activity
Members
Labels
Plan
Issues
7
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
BICF
Astrocyte
cellranger_mkfastq
Commits
68be71c4
There was an error fetching the commit references. Please try again later.
Commit
68be71c4
authored
5 years ago
by
Jeremy Mathews
Browse files
Options
Downloads
Patches
Plain Diff
Remove spaces from design file
parent
d9eb45c1
4 merge requests
!59
Develop
,
!58
Develop
,
!53
Resolve "Design file - filename with spaces error"
,
!52
Remove spaces from design file
Pipeline
#4837
passed with stages
in 1 minute and 47 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
workflow/main.nf
+6
-2
6 additions, 2 deletions
workflow/main.nf
with
6 additions
and
2 deletions
workflow/main.nf
+
6
−
2
View file @
68be71c4
...
@@ -50,7 +50,11 @@ process checkDesignFile {
...
@@ -50,7 +50,11 @@ process checkDesignFile {
"""
"""
hostname
hostname
ulimit -a
ulimit -a
python3 ${baseDir}/scripts/check_design.py -d ${designLocation}
noSpaceDesign=\$(echo "${designLocation}" | tr -d ' ')
if [[ "\${noSpaceDesign}" != "${designLocation}" ]]; then
mv "${designLocation}" "\${noSpaceDesign}"
fi
python3 ${baseDir}/scripts/check_design.py -d \${noSpaceDesign}
"""
"""
}
}
...
@@ -201,4 +205,4 @@ process multiqc {
...
@@ -201,4 +205,4 @@ process multiqc {
multiqc -c ${multiqcConf} .
multiqc -c ${multiqcConf} .
"""
"""
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment