-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
error in make -f src/Test.mk all #342
Comments
I this is a recent bio code output? I tried it in a new directory:
and it all worked as expected. You can also test the makefile individually:
another possibility is that there is an older version of samtools that gets picked up in the pipeline |
all new installs on new machine. tried the new directory and got this:
|
the error there says:
I wonder what the version is
mine is
|
minimap2 -V it's just what installed with you rmost wonderful biostar default install scripts. but I researched that error and removed the --MD in a previous test and it was ok. but still threw the truncated file. aborting error. |
actually the bam file is created in single end mode it looks like minimap2 ignores the missing MD and that is not the cause of the error, it is pretty weird that the error occurs in paired end mode sorting only and not single end, the makefile tests both modes
vs
in my case both of these commands run when executed in the directory that I already ran my tests in see how this works for you |
what is your samtools version
|
single worked,
paired same error. hmmm.
|
$ samtools Program: samtools (Tools for alignments in the SAM format) |
could be that the sra data is incorrect, sometimes fastq dump misbehaves, in this case the second reads are wrong
maybe delete the reads folder and rerun |
$ samtools version Samtools compilation details: HTSlib compilation details: HTSlib URL scheme handlers present: |
seqkit stats reads/*.fastq |
put the output into sam and sort it that way, there is got to be something there |
minimap2 -a -t 2 -R "@rg\tID:run1\tSM:sample1\tLB:library1\tPL:ILLUMINA" refs/AF086833.fa reads/SRR1553425_1.fastq reads/SRR1553425_2.fastq > temp.sam samtools view -Sb temp.sam -o temp.bam |
that looks like it treats the two input files as two separate inputs and generates two SAM files in a concatenated manner, almost certainly a bug maybe add
as a parameter (as short read mapping) |
yes, you are correct about the concatenated, i think, I did this:
will try the minimap command above now.
|
this might be related? not sure: |
also found this, so might be an Apple M2 issue: Michael Barton make aarch64=1 arm_neon=1 |
seem to have isolated it to this step:
minimap2 -a -t 2 -R "@rg\tID:run1\tSM:sample1\tLB:library1\tPL:ILLUMINA" refs/AF086833.fa reads/SRR1553425_1.fastq reads/SRR1553425_2.fastq | \
checked the .sam file by head and tail, seemed to be ok.
The text was updated successfully, but these errors were encountered: