...
Code Block |
---|
conda install flye |
b) Convert FASTQ to FASTA
Code Block |
---|
conda install -c bioconda seqkit |
c) install blast
Code Block |
---|
name: flye
channels:
- defaults
- anaconda
- bioconda
- conda-forge
dependencies:
- python=3.7
- flye=2.9.1
- seqkit=2.3.1
- blast=2.13.0 |
Run the following command to generate the ‘nanoQ’ conda environment:
Code Block |
---|
conda env create -f environment.yml |
Activate the environment to access the installed tools:
Code Block |
---|
conda activate flye |
c) Run a de novo assembly test run
...