/usr/share/doc/ray/Documentation/454.txt is in ray-doc 2.3.1-2build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | # How to Ray with 454 reads
For single reads, just use
mpirun -np 9999 Ray \
-s HFIEHFUE.sff -s KFKOEOKFE.sff
For paired reads, you must extract manually the reads.
convert-sff.sh is available at https://github.com/sebhtml/454-pairs
It utilises ssf_extract to get reads from the sff file.
Then, it create 3 files:
outputPrefix.Reverse.fastq
outputPrefix.Forward.fastq
and
outputPrefix.Single.fastq
The 2 first should have the same number of entries.
To give them to Ray:
mpirun -np 133 \
-p outputPrefix.Reverse.fastq outputPrefix.Forward.fastq \
-s outputPrefix.Single.fastq
|