Extracting only reads mapped to specific genomic region
1
0
Entering edit mode
3.4 years ago
agata ▴ 10

I have a specific genomic region saved as fasta. I want to check how many reads mapped to this specific region and extract them, as for example .bam file.

I used RMTA tool (github link) to map RNA-seq reads to the specific region (so instead of mapping reads to a whole genome I mapped reads only to the specific region).

I used specifically command:

sudo docker run --rm -v $PWD:/data -w /data evolinc/rmta:2.6.3 -g \
specific_region.fasta -l "US" -n 1 -y "PE" -1 \
R1.fastq -1 R2.fastq -2 final_out -p 10 \
-5 0 -3 0 -m 20 -M 50000 -t -u "exon" -a "gene_id" -n 1 -f 1 -k 1

As an output I obtained the .bam file, but with all reads (not only mapped ones).

Next, I visualized it in IGV, where I can clearly see properly mapped reads to my region, but I do not know how to extract them.

I couldn't see any "filtering" option in RMTA, which allows for creating .bam only from mapped reads.

Is it some other way to extract only reads mapped to the specific region preferably as .bam?

mapping FASTA bam • 794 views
ADD COMMENT
1
Entering edit mode
3.4 years ago
JC 13k

you can extract reads mapped in a region with samtools view

ADD COMMENT

Login before adding your answer.

Traffic: 2639 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