Skip to content
Snippets Groups Projects
Commit 23c1b898 authored by Blaise Li's avatar Blaise Li
Browse files

Bypass error from bedGraphToBigWig

parent 2b2c3b66
No related branches found
No related tags found
No related merge requests found
...@@ -94,7 +94,8 @@ From:python:3.7-buster ...@@ -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/. rsync -azvP rsync://hgdownload.soe.ucsc.edu/genome/admin/exe/linux.x86_64/bedGraphToBigWig /usr/local/bin/.
prog="bedGraphToBigWig" prog="bedGraphToBigWig"
echo "# ${prog}" >> /usr/local/share/doc/program_versions.txt 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 # It is possible to test whether the R install is already OK
deb_source="deb http://cran.irsn.fr/bin/linux/debian buster-cran35/" deb_source="deb http://cran.irsn.fr/bin/linux/debian buster-cran35/"
echo ${deb_source} >> /etc/apt/sources.list.d/cran.list echo ${deb_source} >> /etc/apt/sources.list.d/cran.list
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment