-
Notifications
You must be signed in to change notification settings - Fork 0
4. Easy Installation
Conda makes your life very easy ! Most of the bio-packages are now distributed in conda. You can create multiple virtual environments, which allows easy 1 command installation, solves version conflicts etc.,
Download and install anaconda from (Prefer Python 3x)
After GUI-based installation,
- Create an environment

- Activate an environment

- Install a software: type
conda install -c bioconda seqkit

- Go to the folder where, you have genome and protein file and type:
seqkit stats *.fa
Explore the other utilities of seqkit !
- To exit the environment, use
conda deactivate
-
Create a conda environment named "Samtools"
-
Install samtools through bioconda channel
-
Activate the environment
-
type
samtools faidx E.coli_genome.fa(remember the genome fasta file) -
Download and install IGV "IGV viewer"
-
Load the genome file using "Genomes" tab
-
Load the gff file using "File" tab
-
Can you see this ?

Now you know how to install packages related to bioinformatics in hassle-free method !
Move onto next section !