Skip to content

Commit 027cd8e

Browse files
author
jtarraga
committed
Adds decoy genome for GRCh38, and updates options to build index
1 parent a49a196 commit 027cd8e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

resources/GRCh38.decoy.fa.gz

1.57 MB
Binary file not shown.

src/build-index/index_builder.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ void** argtable_index_options_new(int mode) {
4444

4545
int count = 0;
4646
argtable[count++] = arg_file1("i", "index", NULL, "Index directory name");
47-
argtable[count++] = arg_file1("g", "ref-genome", NULL, "Reference genome");
47+
argtable[count++] = arg_file1("g", "ref-genome", NULL, "Reference genome (FASTA format)");
4848

4949
if (mode == BWT_INDEX) {
5050
argtable[count++] = arg_int0("r", "index-ratio", NULL, "BWT index compression ratio. Default: 8");
5151
} else {
52-
argtable[count++] = arg_file0("d", "decoy-genome", NULL, "Decoy genome");
52+
argtable[count++] = arg_file0("d", "decoy-genome", NULL, "Decoy genome (FASTA format)");
5353
}
5454

5555
argtable[count++] = arg_lit0("v", "version", "Display version");

0 commit comments

Comments
 (0)