Skip to content

Commit

Permalink
Merge pull request #48 from sfiligoi/comment_230822
Browse files Browse the repository at this point in the history
Fix typo in usage comment
  • Loading branch information
sfiligoi authored Aug 22, 2023
2 parents 6e835f1 + 20db3b5 commit ea3a620
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ The methods can be used directly through the command line after install:
hdf5_fp32 : HFD5 format, using fp32 precision.
hdf5_fp64 : HFD5 format, using fp64 precision.
--subsample-depth Depth of subsampling of the input BIOM before computing unifrac (required for mode==multi, optional for one-off)
--subsample-replacement [OPTIONAL] Subsample qith or without replacement (default is with)
--subsample-replacement [OPTIONAL] Subsample with or without replacement (default is with)
--n-subsamples [OPTIONAL] if mode==multi, number of subsampled UniFracs to compute (default: 100)
--permanova [OPTIONAL] Number of PERMANOVA permutations to compute (default: 999 with -g, do not compute if 0)
--pcoa [OPTIONAL] Number of PCoA dimensions to compute (default: 10, do not compute if 0)
Expand Down
2 changes: 1 addition & 1 deletion src/su.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ void usage() {
std::cout << " \t\t hdf5_fp64 : HFD5 format, using fp64 precision." << std::endl;
std::cout << " \t\t hdf5_nodist : HFD5 format, no distance matrix. (default if mode==multi)" << std::endl;
std::cout << " --subsample-depth\tDepth of subsampling of the input BIOM before computing unifrac (required for mode==multi, optional for one-off)" << std::endl;
std::cout << " --subsample-replacement\t[OPTIONAL] Subsample qith or without replacement (default is with)" << std::endl;
std::cout << " --subsample-replacement\t[OPTIONAL] Subsample with or without replacement (default is with)" << std::endl;
std::cout << " --n-subsamples\t[OPTIONAL] if mode==multi, number of subsampled UniFracs to compute (default: 100)" << std::endl;
std::cout << " --permanova\t[OPTIONAL] Number of PERMANOVA permutations to compute (default: 999 with -g, do not compute if 0)" << std::endl;
std::cout << " --pcoa\t[OPTIONAL] Number of PCoA dimensions to compute (default: 10, do not compute if 0)" << std::endl;
Expand Down

0 comments on commit ea3a620

Please sign in to comment.