Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Blaise LI
bioinfo_utils
Commits
23c1b898
Commit
23c1b898
authored
Feb 07, 2020
by
Blaise Li
Browse files
Bypass error from bedGraphToBigWig
parent
2b2c3b66
Changes
1
Hide whitespace changes
Inline
Side-by-side
singularity/workflows_base.def
View file @
23c1b898
...
...
@@ -94,7 +94,8 @@ From:python:3.7-buster
rsync -azvP rsync://hgdownload.soe.ucsc.edu/genome/admin/exe/linux.x86_64/bedGraphToBigWig /usr/local/bin/.
prog="bedGraphToBigWig"
echo "# ${prog}" >> /usr/local/share/doc/program_versions.txt
eval "${prog}" 2>> /usr/local/share/doc/program_versions.txt
# `|| :` is to "ignore" error exit code from bedGraphToBigWig
eval "${prog}" 2>&1 | head -1 >> /usr/local/share/doc/program_versions.txt || :
# It is possible to test whether the R install is already OK
deb_source="deb http://cran.irsn.fr/bin/linux/debian buster-cran35/"
echo ${deb_source} >> /etc/apt/sources.list.d/cran.list
...
...
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