forked from dzerbino/velvet
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow paired reads to be read from separate sequence files
- Loading branch information
Showing
2 changed files
with
73 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,7 +33,7 @@ Copyright 2007, 2008 Daniel Zerbino ([email protected]) | |
static void printUsage() | ||
{ | ||
puts("Usage:"); | ||
puts("./velveth directory hash_length {[-file_format][-read_type] filename1 [filename2 ...]} {...} [options]"); | ||
puts("./velveth directory hash_length {[-file_format][-read_type][-separate|-interleaved] filename1 [filename2 ...]} {...} [options]"); | ||
puts(""); | ||
puts("\tdirectory\t: directory name for output files"); | ||
printf("\thash_length\t: EITHER an odd integer (if even, it will be decremented) <= %i (if above, will be reduced)\n", MAXKMERLENGTH); | ||
|
@@ -44,6 +44,10 @@ static void printUsage() | |
puts("File format options:"); | ||
puts("\t-fasta\t-fastq\t-raw\t-fasta.gz\t-fastq.gz\t-raw.gz\t-sam\t-bam"); | ||
puts(""); | ||
puts("File layout options for paired reads (only for fasta and fastq formats):"); | ||
puts("\t-interleaved\t: File contains paired reads interleaved in the one file (default)"); | ||
puts("\t-separate\t: Read 2 separate files for paired reads"); | ||
puts(""); | ||
puts("Read type options:"); | ||
puts("\t-short\t-shortPaired"); | ||
#if CATEGORIES <= 5 | ||
|
@@ -72,6 +76,9 @@ static void printUsage() | |
puts("- Paired-end short reads (remember to interleave paired reads):"); | ||
puts("\tvelveth Assem 31 -shortPaired -fasta interleaved.fna"); | ||
puts(""); | ||
puts("- Paired-end short reads (using separate files for the paired reads)"); | ||
puts("\tvelveth Assem 31 -shortPaired -fasta -separate left.fa right.fa"); | ||
puts(""); | ||
puts("- Two channels and some long reads:"); | ||
puts("\tvelveth Assem 43 -short -fastq unmapped.fna -longPaired -fasta SangerReads.fasta"); | ||
puts(""); | ||
|