Collection of famous bioinformatics tools.
192
This docker app is collection of some of the most popular software currently being used in the analysis of next generation sequencing data. All of the software are ready to use in the docker image that can be run on any machine (e.g. Mac, Linux and Windows) or on high performance cluster/computing platform via singularity. The docker app respository is available from the docker hub.
Here is the list of software available through this docker app. All of the sotware binaries are paresent in the /opt directory and soft linked to the /usr/bin for ready to use. Each of the sotware/tool standard use or manual can be accessed on providers webpages.
User: compbio
Password: bioinfo
docker pull masoodzaka/bioinformatics:v1.0.0
e.g. drive(d):/compbio
docker run -d -v d:/compbio:/home/compbio \
--name bioinfo_container \
-it masoodzaka/bioinformatics:<tag>
docker exec -i -t bioinfo_container
docker stop bioinfo_container
docker start bioinfo_container
docker attach bioinfo_container
sudo mkdir -p compbio
sudo docker run -d -v ~/compbio:/home/compbio \
--name bioinfo_container \
-it masoodzaka/bioinformatics:<tag>
docker exec -i -t bioinfo_container
For security reasons, docker is not directory accessible on HPC or Computer clusters environment such as SGE or Slurm on private, research lab or University network. However, we can use Singularity such as this one from NIH as an ulternate for performing similar tasks. To learn more about singularity visit this documentation from Sylabs.
You can quick start singularity by pulling the docker image using following command.
singularity pull docker://masoodzaka/bioinformatics
Clone the main git repository using:
git clone https://github.com/masoodzaka/bioinformatics_docker_app.git
and make a new folder with version tag:
cd bioinformatics_docker_app
mkdir -p v1.0.1
cd v1.0.1
touch Dockerfile
Access the content of previous Dockerfile image using the "FROM" root container:
FROM masoodzaka/bioinformatics:v1.0.0
And build the latest docker image app using standard docker build command
docker build -t masoodzaka/bioinformatics:v1.0.1
Push the docker image
docker image push masoodzaka/bioinformatics:v1.0.1
The bioinformatics docker app will be regularly updated with latest software currently being implemented in the best practices analysis of high-throughput data.
Content type
Image
Digest
Size
5.5 GB
Last updated
over 4 years ago
docker pull masoodzaka/bioinformatics:v1.0.0