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
403908c0
Commit
403908c0
authored
May 20, 2021
by
Blaise Li
Browse files
Link to fastq-tools tarball did not work any more.
parent
7bb5925c
Changes
1
Hide whitespace changes
Inline
Side-by-side
singularity/workflows_base.def
View file @
403908c0
...
...
@@ -56,6 +56,8 @@ From:python:3.7-buster
%post
apt-get -y update
# Needed by autogen.sh of fastq-tools
apt-get -y install libtool
# Useful for interactive work using the container
apt-get -y install vim less
# To be able to generate rule graphs of the workflows
...
...
@@ -105,9 +107,13 @@ From:python:3.7-buster
# Installing fastq-tools #
##########################
cd /usr/local/src
wget --continue http://homes.cs.washington.edu/~dcjones/fastq-tools/fastq-tools-0.8.tar.gz
tar -xzf fastq-tools-0.8.tar.gz
cd fastq-tools-0.8
# wget --continue http://homes.cs.washington.edu/~dcjones/fastq-tools/fastq-tools-0.8.tar.gz
wget --continue https://github.com/dcjones/fastq-tools/archive/refs/heads/master.zip
# tar -xzf fastq-tools-0.8.tar.gz
unzip master.zip
# cd fastq-tools-0.8
cd fastq-tools-master
./autogen.sh
./configure
make
make install
...
...
Write
Preview
Supports
Markdown
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