Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
felipelouza authored Apr 26, 2019
1 parent 4973c11 commit 6df9a44
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ All input and output files are uncompressed. The value 0 is used as the eof symb
specify basename for output and temporary files

*-b, --bwt*
inputs are bwt files (requires -o)
inputs are bwt files (requires -o)

*-l, --lcp*
compute LCP Array
Expand All @@ -83,7 +83,6 @@ All input and output files are uncompressed. The value 0 is used as the eof symb
*-v*
verbose output in the log file


## Suffix array and document array computation

Use the options:
Expand All @@ -100,7 +99,22 @@ Use the options:
*--sbytes*
number of bytes for each SA entry (def. 4)


### Merging BWT files

In the case you want to **merge BWT files** computing **DA**, you must provide DA and `file.docs` with the following option:

*--da --docs*
compute Document Array and output the number of documents into `file.docs` (required to use --bwt --da)

**Example**

```sh
./eGap dataset/file1.fastq -o file1 --da --docs
./eGap dataset/file2.fastq -o file2 --da --docs

./eGap --bwt -o merge file1.bwt file2.bwt --da
```


## Truncated LCP values and de Bruijn graph info

Expand Down

0 comments on commit 6df9a44

Please sign in to comment.