Skip to content

Commit

Permalink
"differential variants" -> "internal variants"
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Ondov committed Sep 30, 2016
1 parent d151617 commit 748759a
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/harvest/harvest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ int main(int argc, char * argv[])
{
midpointReroot = true;
}
else if ( strcmp(argv[i], "--diff") == 0 )
else if ( strcmp(argv[i], "--internal") == 0 )
{
parseTracks(argv[++i], tracks, lca);
}
Expand Down Expand Up @@ -180,9 +180,10 @@ int main(int argc, char * argv[])
cout << " -u 0/1 (update the branch values to reflect genome length)" << endl;
cout << " -v <VCF input>" << endl;
cout << " -V <VCF output>" << endl;
cout << " --diff <track1>,<track2>,... #only differential variants of tracks listed" << endl;
cout << " --diff <track1>:<track2> #only differential variants of LCA clade of" << endl;
cout << " <track1> and <track2>" << endl;
cout << " --internal <track1>,<track2>,... #only variants that differ among tracks" << endl;
cout << " listed" << endl;
cout << " --internal <track1>:<track2> #only variants that differ within LCA" << endl;
cout << " clade of <track1> and <track2>" << endl;
cout << " --signature <track1>,<track2>,... #only signature variants of tracks listed" << endl;
cout << " --signature <track1>:<track2> #only signature variants of LCA clade of" << endl;
cout << " <track1> and <track2>" << endl;
Expand Down

0 comments on commit 748759a

Please sign in to comment.