Minimap2: Align multiple illumina PE reads at once with minimap2

Created on 27 Jun 2019  路  1Comment  路  Source: lh3/minimap2

Hi,

How can I align multiple Illumina PE reads at once using minimap2?

I tried something like this:
minimap2 -x sr *_1.fq.gz *_2.fq.gz | gzip > prefix.paf.gz

But it did not work.

Thanks,
Raz

question

Most helpful comment

@xbarvazx you can use subshells in bash like this:

minimap2 -x sr ref.fa <(zcat *_1.fq.gz) <(zcat *_2.fq.gz)

>All comments

@xbarvazx you can use subshells in bash like this:

minimap2 -x sr ref.fa <(zcat *_1.fq.gz) <(zcat *_2.fq.gz)
Was this page helpful?
0 / 5 - 0 ratings

Related issues

sjackman picture sjackman  路  3Comments

wangyugui picture wangyugui  路  3Comments

ms-gx picture ms-gx  路  5Comments

tseemann picture tseemann  路  5Comments

pterzian picture pterzian  路  3Comments