Skip to content

Commit

Permalink
TsvDiff: updated documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
marc-sturm committed Dec 17, 2024
1 parent f56ba84 commit bba8d44
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/TsvDiff/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,8 @@ class ConcreteTool
virtual void setup()
{
setDescription("Compares TSV files.");
setExtendedDescription(QStringList () << "A simple pairwise alignment algorithm is used, which is slow for a large number of lines");

addInfile("in1", "Input TSV file. If unset, reads from STDIN.", false);
addInfile("in2", "Input TSV file. If unset, reads from STDIN.", false);
addInfile("in1", "First input TSV file.", false);
addInfile("in2", "Second input TSV file.", false);

//optional
addOutfile("out", "Output file with differences. If unset, writes to stdout.", true);
Expand Down

0 comments on commit bba8d44

Please sign in to comment.