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
4a6e4222
Commit
4a6e4222
authored
4 years ago
by
Gervaise Henry
Browse files
Options
Downloads
Patches
Plain Diff
Fix local process ulimit set
parent
d770f29d
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!69
Fix local process ulimit set
Pipeline
#7402
passed with stages
in 5 minutes and 13 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.md
+1
-1
1 addition, 1 deletion
CHANGELOG.md
workflow/main.nf
+1
-5
1 addition, 5 deletions
workflow/main.nf
workflow/nextflow.config
+1
-1
1 addition, 1 deletion
workflow/nextflow.config
with
3 additions
and
7 deletions
CHANGELOG.md
+
1
−
1
View file @
4a6e4222
# v2.1.
4
# v2.1.
5
**UserFacing**
*
Check Design File for spaces in name and file contents
*
Update design example, README, and astrocyte.yml with current barcode IDs
...
...
This diff is collapsed.
Click to expand it.
workflow/main.nf
+
1
−
5
View file @
4a6e4222
...
...
@@ -32,7 +32,7 @@ bclCount = Channel
.count()
// Define regular variables
pipelineVersion = "2.1.
4
"
pipelineVersion = "2.1.
5
"
name = params.name
designLocation = Channel
.fromPath(params.designFile)
...
...
@@ -105,7 +105,6 @@ process checkDesignFile {
script:
"""
hostname
ulimit -u 16384
ulimit -a
noSpaceDesign=\$(echo "${designLocation}" | tr -d ' ')
if [[ "\${noSpaceDesign}" != "${designLocation}" ]]; then
...
...
@@ -203,7 +202,6 @@ if (bclCount.value == 1) {
script:
"""
hostname
ulimit -u 16384
ulimit -a
bash countDesign.sh
"""
...
...
@@ -264,7 +262,6 @@ process versions {
script:
"""
hostname
ulimit -u 16384
ulimit -a
python3 generate_versions.py -f version_*.txt -o versions
python3 generate_references.py -r ${references} -o references
...
...
@@ -291,7 +288,6 @@ process multiqc {
script:
"""
hostname
ulimit -u 16384
ulimit -a
#export LC_ALL=C.UTF-8
#export LANG=C.UTF-8
...
...
This diff is collapsed.
Click to expand it.
workflow/nextflow.config
+
1
−
1
View file @
4a6e4222
...
...
@@ -47,6 +47,6 @@ manifest {
homePage
=
'https://git.biohpc.swmed.edu/BICF/Astrocyte/cellranger_mkfastq'
description
=
'This pipeline is a wrapper for the cellranger mkfastq tool from 10x Genomics (which uses Illuminas bcl2fastq). It takes bcls and demultiplexes samples from 10x Genomics Single Cell Gene Expression libraries into fastqs.'
mainScript
=
'main.nf'
version
=
'2.1.
4
'
version
=
'2.1.
5
'
nextflowVersion
=
'>=0.31.0'
}
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