PacBio and Illumina FASTQ Files #120
-
I have a set of 217 MAGs that I would like to use coverM to determine the overall coverage of a number of FASTQ files. For some of our experiments, we have both Illumina and PacBio sequencing files. Should I run CoverM on the Illumina and PacBio sequencing files separately or is it okay to run everything together? I'm relatively new to CoverM and this kind of thing. Our goal is to determine relative abundance of the MAGs across different experiments, if that helps. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Hi @kevinmyers this is a good question. You can carry out the mapping based part of it using It's a bit messy I know - the problem is that currently there is no way to specify multiple |
Beta Was this translation helpful? Give feedback.
Hi @kevinmyers this is a good question.
You can carry out the mapping based part of it using
coverm genome --bam-file-cache-directory
using-p minimap2-pb
and-p minimap2-sr
. This will generate the BAM files. Then merge those BAM files, and then runcoverm genome
again using the merged BAM file as input.It's a bit messy I know - the problem is that currently there is no way to specify multiple
-p
in a single command (an no way to group multiple readsets into a single sample). I'll take this as a feature request then, especially since hybrid sequencing is more common these days.