update: add more info
This commit is contained in:
parent
5bfc8c0361
commit
974a88d451
3 changed files with 8 additions and 4 deletions
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
### Environment Setting
|
### Environment Setting
|
||||||
|
|
||||||
pkgver=0.0.1
|
pkgver=0.0.2
|
||||||
|
|
||||||
DirHome=$(pwd)
|
DirHome=$(pwd)
|
||||||
DirRaw=$DirHome/00_raw
|
DirRaw=$DirHome/00_raw
|
||||||
|
|
|
@ -210,7 +210,9 @@ int main(int argc, char *argv[]) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if (argc != 3) {
|
} else if (argc != 3) {
|
||||||
cerr << "Usage: " << argv[0]
|
cerr << "sortDiamond\nAuthor: Guoyi "
|
||||||
|
"Zhang\nLicense:GPL-2.0-only\nUsage: "
|
||||||
|
<< argv[0]
|
||||||
<< " <input_file> <output_file> "
|
<< " <input_file> <output_file> "
|
||||||
"<sseq,qstart,qend,bitscore/evalue,qseq> "
|
"<sseq,qstart,qend,bitscore/evalue,qseq> "
|
||||||
"<bitscore(default)/evalue>\nthe column number starts "
|
"<bitscore(default)/evalue>\nthe column number starts "
|
||||||
|
|
|
@ -71,8 +71,10 @@ void splitFasta(const std::string& input_fasta) {
|
||||||
|
|
||||||
int main(int argc, char* argv[]) {
|
int main(int argc, char* argv[]) {
|
||||||
if (argc != 2) {
|
if (argc != 2) {
|
||||||
std::cerr << "Usage: " << argv[0] << " <input_fasta>"
|
std::cerr << "splitFasta\nAuthor: Guoyi "
|
||||||
<< std::endl;
|
"Zhang\nLicense:GPL-2.0-only\nUsage: "
|
||||||
|
"Usage: "
|
||||||
|
<< argv[0] << " <input_fasta>" << std::endl;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue