Is interleaved Fastq files the same as interlaced fastq
There are errors in BWA-MEM2 that there
fastq
• 2,236 views
•
link
updated
by
Brian Bushnell
2.0K
• |
written
by
RCMC
1
0 answers
No answers yet.
Log in to answer this question.
More posts like this
-
Recommended bwa-mem2 implementation for Illumina short-read alignment?
written by kalavattam 85I see a few different bwa-mem2 implementations for alignment of Illumina short reads. Do people have thoughts and recommendations for which they prefer (or not)? …
-
Regions Overlap failure using bwa-mem2
written by jsmith120f 0(mapping) jordansmith@ASK-DUR-MAC-34 References % bwa-mem2 index pM3_xseq100.fa Looking to launch executable "/opt/anaconda3/envs/mapping/bin/bwa-mem2.avx", simd = .avx Launching executable "/opt/anaconda3/envs/mapping/bin/bwa-mem2.avx" [bwa_index] Pack FASTA... [src/utils.cpp: 50] memcpy_bwamem regions …
-
Bwa-mem2 indexing not working down stream
written by mgranada3 6I am using bwa-mem2 to create my index and to map my reads to the reference genome. This is my indexing code #!/bin/bash #SBATCH -J …
-
bwa-mem2 error: skip or orientatioon FF
written by jiyoung 2I am having some problems with using bwa-mem2 After using the command line(below): there is some error in my results. The error message stated: "Skip …
-
BWA-mem2 vs Bowtie2: no deterministic option
written by alessandra.vittorini 0Hello, I know that with Bowtie2 I can choose the --non-deterministic option to make sure that the pseudo random generator is re-initialised differently every time …
-
Extracting RNA sequence - single cell
written by Skamboj 0I am trying to extract the exact RNA sequence within the fastq file of a single cell dataset generated using Parse Bioscience. Is there a …
-
bowtie2 code to bwa-mem2
written by Jalil Sharif 8Hi there, I have this code, I would like to use the same options but would like to run bwa-mem2 instead. ``` bowtie2 -k 2 …
-
BWA mem reference genome index
written by Maka 2hi...I am trying to run the Chip-Seq analysis pipeline... #bwa mem2 for reference genome GRCm39 download from https://www.ncbi.nlm.nih.gov/assembly/GCF_000001635.27 as .fna (genbank) #index genome cd /media/j/Data/BWA-MEM2 …
-
The meaning of 'bwa-mem2 index' output
written by ziyan 0I have used bwa-mem2 index UCSC hg19.fa.gz file, but I have no idea about the output of this command. Does anyone know it? Thanks a …
-
Alignment using bwa-mem2
written by priya.bmg 7Hello I need help in aligning the sequence with reference using bwa-mem2. I used the following code: bwa-mem2 mem -t 8 gch38.fa DE98NGSUKBD117612_1_1.fq DE98NGSUKBD117612_1_2.fq > …
Sorry I accidentally hit enter
BWA-MEM2 has occurring some error and states that paired reads have different names so I am trying to combine it to a single file and hoping to fix it
However, I am confused if the interlaced and interleaved fastq are the same since SPAdes wants interlaced fastq and BWA-MEM wants interleaved fastq
Both programs will accept separate paired-end files. The reads in the files do need to be in exact same order (in sync) as noted by rpolicastro .
SPAdes seems to refer to
interleaveddata asinterlaced.No need to post a comment, you can just edit your original post after the fact
Interleaved is the standard term; SPAdes calls them interlaced. As rpolicastro stated, your reads may have become disordered.
This may indicate that your R1 and R2 reads were processed in a way that didn't maintain the 1:1 order of matching forward and reverse reads in both files. I would try running them through
seqkit pairfirst to try and fix them.Even better would be to figure out what step prior to this could have caused it and remediate the problem at the source. If there were any trimming or filtering steps I would start there.