Skip to content

fmalmeida/MpGAP v3.0.1

Compare
Choose a tag to compare
@fmalmeida fmalmeida released this 10 Nov 15:48
· 218 commits to master since this release
fd57d33

The pipeline

MpGAP, is a very customisable (easy to use) pipeline that uses state-of-the-art software for the de novo assembly of sequencing reads. It is capable of performing short reads only, long reads only and hybrid assemblies using data from Illumina, Pacbio and Oxford Nanopore Technologies sequencing platforms. As a plus, it has only Docker and Nextflow as dependencies.

Relase notes

Super small fix to properly load YAML file when using the pipeline with cloud computing environments such as AWS/S3-bucket:

# from
parameter_yaml = new FileInputStream(new File(params.input))
# to
parameter_yaml = file(params.input).readLines().join("\n")