Skip to content

Commit

Permalink
Small bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
thegenemyers committed May 9, 2024
1 parent 99d64b7 commit 3b0431c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions FastK.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ int DO_STAGE; // Which step to perform

#endif

static char *Usage[] = { "[-k<int(40)>] -t[<int(1)>]] [-p[:<table>[.ktab]]] [-c] [-bc<int(0)>]",
" [-v] [-N<path_name>] [-P<dir(/tmp)>] [-M<int(12)>] [-T<int(4)>]",
static char *Usage[] = { "[-k<int(40)>] [-t[<int(1)>]] [-p[:<table>[.ktab]]] [-c] [-bc<int>]",
"[-v] [-N<path_name>] [-P<dir(/tmp)>] [-M<int(12)>] [-T<int(4)>]",
" <source>[.cram|.[bs]am|.db|.dam|.f[ast][aq][.gz] ..."
};

Expand Down Expand Up @@ -363,7 +363,7 @@ int main(int argc, char *argv[])
{ cpath = getcwd(NULL,0);
if (SORT_PATH[0] == '.')
{ if (SORT_PATH[1] == '/')
spath = Catenate(cpath,SORT_PATH+1,"","");
spath = Catenate(cpath,SORT_PATH+2,"","");
else if (SORT_PATH[1] == '\0')
spath = cpath;
else
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ about 4.7-bits per base for a recent 50X HiFi asssembly data set.

```
1. FastK [-k<int(40)>] [-t[<int(1)>]] [-p[:<table>[.ktab]]] [-c] [-bc<int>]
[-v] [-N<path_name>] [-P<dir(/tmp)>] [-M<int(12)>] [-T<int(4)>]
[-v] [-N<path_name>] [-P<dir(/tmp)>] [-M<int(12)>] [-T<int(4)>]
<source>[.cram|.[bs]am|.db|.dam|.f[ast][aq][.gz]] ...
```

Expand Down

0 comments on commit 3b0431c

Please sign in to comment.