Why is mapper.pl from mirdeep2 producing an empty mapping file?
1
0
Entering edit mode
3.4 years ago
halo22 ▴ 300

Hello All,

I am new to mirna analysis and using mirdeep2 for alignment and quantification of miRNA. The miRNA was developed using the true kit from Illumina. I've used the mapper.pl program to perform adapter removed using command1. I made the index to the reference using bowtie_v_1.2 using command2. Now, I am trying to create a mapping file using mapper.pl, the script runs successfully but the mapping file is empty [command3]. Can you please provide comments as to where my I am making a mistake? Appreciate all your help.

Thanks

command1: mapper.pl ../RawData.fq -e -h -i -j -k TGGAATTCTCGGGTGCCAAGG -l 18 -m -s reads_collapsed.fa

command2: bowtie-build genome/GRCh38.p13.genome.fa.gz  GRCh38.p13

command3: mapper.pl reads_collapsed.fa -c -p GRCh38.p13 -t reads_collapsed_vs_genome.arf
mirna ngs next-gen • 1.6k views
ADD COMMENT
0
Entering edit mode

Try combining command 1 and 3, run command 2 first:

bowtie-build genome/GRCh38.fa GRCh38_idx

mapper.pl ../RawData.fq -e -h -i -j -k TGGAATTCTCGGGTGCCAAGG  -l 18 -m -p GRCh38_idx -s reads_collapsed.fa -t reads_vs_genome.arf -v

Does bowtie make correct indices from a fa.gz file? Maybe you have to gunzip it.

Be sure to add -v to assess the run output.

ADD REPLY
1
Entering edit mode
3.0 years ago
Yuquan ▴ 10

Hi,

As Barry said, make sure you have the index file ready (from command 2) and then run command 1 and 3 together.

Another reason might be you set -l 18 in your command 2, meaning you are discarding any reads with length < 18. Did you check your read length distribution to make sure this cutoff is appropriate for your data? You can run fastqc to quickly check the length distribution after removing adapters.

ADD COMMENT

Login before adding your answer.

Traffic: 1507 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6