Error, cannot convert fastq file to fasta since cannot recognize read orientation as /1 or /2 (instead: E)Thread 2 terminated abnormally: Error, cmd: /n/sw/fasrcsw/apps/Core/trinityrnaseq/2.3.2-fasrc01/util/..//trinity-plugins/fastool/fastool --illumina-trinity --to-fasta /n/regal/Giribet_lab/tauanajc/prep_for_assemblies/Solemya_velum/bowtie/Solemya_velum_Cleaned.2.fq >> right.fa died with ret 768 at /n/sw/fasrcsw/apps/Core/trinityrnaseq/2.3.2-fasrc01/util/insilico_read_normalization.pl line 769.
--
You received this message because you are subscribed to the Google Groups "trinityrnaseq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to trinityrnaseq-users+unsub...@googlegroups.com.
To post to this group, send email to trinityrnaseq-users@googlegroups.com.
Visit this group at https://groups.google.com/group/trinityrnaseq-users.
For more options, visit https://groups.google.com/d/optout.
great advice! thx for posting~b
On Thu, Mar 9, 2017 at 6:07 PM, <taua...@gmail.com> wrote:
Ok, just in case someone has the same issue:I found that the problem is the .1 and .2 identifiers that the SRA headers have right after the SRR number. That makes the name of reads in both files different. There is also a space, so we want to get rid of both the identifiers in the middle and the space. I wrote the following sed command to keep basically all the important header information and get rid of the problems (also removing the "length=" at the end).sed -i 's:\(@SRR.*\).1 \(HWI.*\)\( length=.*\):\1-\2:g' ReadsFile.1.fqsed -i 's:\(@SRR.*\).2 \(HWI.*\)\( length=.*\):\1-\2:g' ReadsFile.2.fqThe only different between the two is the .1 or .2 in the first fragment.It worked perfectly on a test run I did with reduced files.
--
You received this message because you are subscribed to the Google Groups "trinityrnaseq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to trinityrnaseq-users+unsub...@googlegroups.com.
To post to this group, send email to trinityrn...@googlegroups.com.
Visit this group at https://groups.google.com/group/trinityrnaseq-users.
For more options, visit https://groups.google.com/d/optout.