Open kokyriakidis opened 5 years ago
Hi @kokyriakidis,
It looks like you are right and this error is occurring because it expects the same exact header before the /1
or /2
(see: https://github.com/bcgsc/abyss/wiki/ABySS-Users-FAQ).
You can try this fix. Just replace the read1/2 and output file names for your purposes.
sed "s/_forward//g" $READ1 > new_reads.1.fq
sed "s/_reverse//g" $READ2 > new_reads.2.fq
The ORP is checkpointed so you should be able to just restart it and it will pick up at the last checkpoint it passed. Note that you will want to rename the *TRIM_*P.cor.fq
reads or it will resume and give you the same error.
for the checkpointing to work, you'll have to trick the software into thinking that the other assemblies have been made with the "new" reads
touch assemblies/*fasta
before rerunning the ORP, but after you change the reads as per above.
Here is the CMD output:
Everything until then went fine! Do you know what the problem is?
The reads ID is this:
These files were produced from fastq-dump. It seems that the problem is the naming, should be identical. So I should remove the forward and reverse part. Do you have a simple way to do that?
Can i restart the pipeline from the checkpoint above? Or do I have to run it from the start?