Entering edit mode
5.0 years ago
Bioinfonext
▴
470
Hi,
file names are like this:
Root_T1_S_R8_S48_unmapped.R1.fq
Root_T1_S_R9_S47_unmapped.R1.fq
Root_T2_F_R2_S25_unmapped.R2.fq
Root_T2_F_R3_S24_unmapped.R2.fq
I need to take Multiple R1.fq and R2.fq into two separate files to run trinity for de novo assembly.
I am little bit confused, which command is correct? should I use double arrow or single arrow?
cat *.R2.fq >>right.fq
cat *.R2.fq > right.fq
cat *.R1.fq >leftt.fq
cat *.R1.fq >>left.fq
thanks
The
S*
numbers are added by Illumina's post-processing software depending on the location of that sample (and its index) inSampleSheet.csv
used for demultiplexing. If these are separate samples i.e. ifR*
has any meaning then you should not be concatenating these files.If these are replicates of some conditions use as shown in
trinity
manual :or you could specify multiple files on command line: