Fastp
Does fastp remove duplicated reads or not because I have been trying to remove the duplicate reads by using -D or --dedup but it's not working so can someone tell me if it's still available?
fastp
• 3,508 views
•
link
updated
by
Lhl
•
written
by
nishimalhotra2612 •
0 answers
No answers yet.
Log in to answer this question.
More posts like this
-
Pre-processing duplicates in SMARTer-seq data
written by kiki •Hi, I have reads generated from FFPE samples by using SMART-Seq Total RNA Pico Input with UMIs (ZapR® Mammalian) kit. We recieved demultiplexed files from …
-
nanopore sequencing - fastp dedup option
written by HarperReed •Hello everyone, Should I use the dedup option when filtering my reads using Fastp while working on FASTQ files generated with Nanopore sequencing technology? -D, …
-
How to understand differences in duplication rates between picard MarkDuplicates and fastp
written by Assa YeroslavizHi, I have tried to search for duplications in my data suing both the `fastp` and the `picard` tools. Unfortunaltely the difference between the two …
-
Unable to remove duplicate sequences
written by juanluis0516 •Hi, I am trying to make a SARS-CoV2 assembly but I am stuck in the preprocessing of sequencing reads. When I analyse them with Fastqc …
-
Are 10x cellranger-arc ATAC bam files deduplicated?
written by WaterMetal •I am working with some atac files from cellranger-arc v.2.0. I was wondering whether the atac_possorted_bam.bam produced as the output was deduplicated? I believe the …
-
Umi dedup with fastp
written by samuelCan anyone help. I am trying to use fastp to dedup using the UMI. There is an explanation here [Tutorial:Use fastp to preprocess FASTQ data …
-
fastp json -> multiqc and fastp processed reads ->fastqc -> multiqc show different level of sequenc…
written by Rakesh Tiwari •My RNAseq PE data has near 60% sequence duplication. I am using fastp to delete duplicate reads. I am doing my rna seq analysis in …
-
how to remove duplicate SNP rows in vcf using bcftools norm
written by evelynHello, I am trying to remove duplicate SNP rows from a multiple sample vcf file. SNPs have different positions but multiple duplicate rows. I tried …
-
Finding HTSeq count data for NIH datasets.
written by lon.lightly •Hi, I'm new here (and in general). I hope it's not a terrible question, but I've been frustrated with trying to see if I can …
-
remove dubplicate from ensemble seqeunce?
written by najibveto •hello i am trying to retrieve some genes from ensemble database using the biomart tool http://www.ensembl.org/biomart/martview/a5ef51e4e51a2077dbe7e13e2a015f6a i got the genes but i got them duplicated …
That does not tell us in what way is it not working. How did you determine that?
As long as you are using
v.0.22or above that feature should be available: https://github.com/OpenGene/fastp#deduplicationi used this command
fastp -i SRR13684098_1.fastq.gz -I SRR13684098_2.fastq.gz -o 098_1.fastq.gz -O 098_2.fastq.gz -D
and it shows undefined short option: -D
but mostly for enabling any feature we use this way only
sorry may be i am wrong also
what is your version of
fastp?can you see the -D option in
fastp --helpfastp 0.23.2
no i can't see i think its the latest version and even in github there is an option for removing duplications.
Use
clumpify.shthen: Introducing Clumpify: Create 30% Smaller, Faster Gzipped Fastq Files. And remove duplicates.hey thanks for the suggestion but i figured it out as its rna-seq data there is no need to remove duplication as i might lose some important data
Does
clumpify.shremove duplicates based on UMIs, aka. keep consensus or the best sequence from a group of sequences with the same UMI?No.
clumpify.shonly uses sequence read. If your UMI is still part of that sequence then it will dedupe those reads but you should not count on it using the UMI specifically.If you want to specifically use UMI, then try
umi-toolsorfastp.thanks for the clarification.