Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
BICF
Astrocyte
cellranger_mkfastq
Commits
ea391ce2
Commit
ea391ce2
authored
May 17, 2019
by
Jeremy Mathews
Browse files
Collapse Folder and File Names
parent
7aa16d3d
Pipeline
#3905
passed with stages
in 1 minute and 52 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
workflow/main.nf
View file @
ea391ce2
...
...
@@ -37,7 +37,11 @@ process checkDesignFile {
"""
hostname
ulimit -a
python3 "$baseDir/scripts/check_design.py" -d "$designLocation"
dL=`echo "$designLocation" | tr -d ' '`
if [ "$designLocation" != "\$dL" ]
then mv "$designLocation" "\$dL"
fi
python3 "$baseDir/scripts/check_design.py" -d "\$dL"
"""
}
...
...
@@ -60,10 +64,16 @@ process untarBCL {
"""
hostname
ulimit -a
tar_no=`echo "${tar}" | tr -d ' '`
if [ "${tar}" != "\${tar_no}" ]
then mv "${tar}" "\${tar_no}"
fi
name=`echo ${tar} | rev | cut -f1 -d '.' | rev`;
if [ "\${name}" == "gz" ];
then tar -xvf "$tar" -I pigz;
else tar -xvf "$tar";
then tar -xvf "
\
$tar
_no
" -I pigz;
else tar -xvf "
\
$tar
_no
";
fi;
"""
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment