Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Aim:

Implement a de novo assembly pipeline for ONT data

Source:

https://nanoporetech.com/sites/default/files/s3/literature/Bacterial-assembly-workflow.pdf

https://github.com/fenderglass/Flye/blob/flye/docs/INSTALL.md

Methodology

a) create a conda environment with Flye and its dependencies

Create a 'python 3.7' environment called flye

conda create --name flye python=3.7

activate the conda environment

conda activate flye

install flye

conda install flye

b) Run a de novo assembly test run

#!/bin/bash -l
#PBS -N FlyeAssembly
#PBS -l walltime=24:00:00
#PBS -l mem=16gb
#PBS -l ncpus=8

cd $PBS_O_WORKDIR

ONTDATA='/path/to/ONT/reads'
REF='ET300_MT921572_reference_sequence.fasta'

conda activate flye

#run assembly
flye --nano-raw $ONTDATA --out-dir out_nano --threads 8
  • No labels