Conda, bioconda, anaconda, are they different?
1
3
Entering edit mode
2.8 years ago

I did google this honestly, but I didn't understand what is the difference between all these names. I'd highly appreciate any help.

Conda anaconda bioconductor bioconda • 5.9k views
ADD COMMENT
4
Entering edit mode

Anaconda - WikiPedia LINK
Conda - WikiPedia LINK
Miniconda - There is also a small, bootstrap version of Anaconda called Miniconda, which includes only conda, Python, the packages they depend on, and a small number of other packages.[
Bioconda - A popular conda channel for bioinformatics software is Bioconda, which provides multiple software distributions for computational biology

ADD REPLY
1
Entering edit mode

Anaconda: Anaconda is an open-source python distribution. It is purpose-built for such applications as machine learning, data science, and large-scale data processing. This distribution includes the core Python language, along with more than 200 packages, and a package management tool. The installation file is about 200MB and will require about 2GB of disk space once installed.

Miniconda: Miniconda is a slimmed-down distribution version of Anaconda. It has all the components of the Anaconda distribution, except the 200+ pre-installed data science applications. With the various Mini condo installers, you will get the core Python language, and a package manager tool (Conda). Owing to the smaller file size and reduced disk space requirements, Miniconda is relatively faster to install as compared to the Anaconda distribution.

ADD REPLY
0
Entering edit mode

Thanks very much 🙏🏻

ADD REPLY
11
Entering edit mode
2.8 years ago

Conda is a package manager - a program where when you ask for a package to be installed, it will download an install the package you ask for and all of its depedencies (things it needs to run). The information on where to download things from and what the dependencies are for each package are stored in a database called a "channel".

bioconda is a conda channel, that contains the names, locations and dependencies of many bioinformatics tools. So when you say conda install pysam -c bioconda the conda program will go access the bioconda channel and ask 'where do I find the package "pysam", and what else needs to be installed?' and bioconda will reply "pysam is at https://blahblah.com/bioconda/pysam/versionXY, and when you download it, copy the files to direcoty ABC and then run script fgh.py. You will first need to install the packages htslib (version > 1.2.3) and samtools (version > 4.5.6) and python (version 3.8) and zlib (verion 9.10.11)". Conda then goes away and repeats that process for htslib, samtools, python and zlib until everything is ready to install, it downloads everything and installs it.

Anaconda is both a conda channel (that is a list of packages, where they can be downloaded from, and what their dependencies are) and an installable bundle that includes python, the most common data science packages for python (including things like scipy, numpy, pandas and matplotlib) and the conda pacakge manager.

miniconda is a different bundle that you can download from the same place as Anaconda, and it includes python and the conda package manager, but not the common data science packages, which you would have to install manually using the conda package manager if you later decided you wanted them.

ADD COMMENT
0
Entering edit mode

Thanks very much for your kind reply. This is really clear and comprehensive. Best!

ADD REPLY

Login before adding your answer.

Traffic: 2534 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6