Closed matthuska closed 1 year ago
All match query parameters can now be read from a file instead of having to include them all in the command line. To use this, prefix the name of the file with a "@" character. For example, the following two queries are the same:
$ ./sonar --db mydb.db --lineage BQ.1.1 BA.5.5 B.1.1.7
and
$ cat lineage.txt # query arguments are listed one per line BQ.1.1 BA.5.5 B.1.1.7 $ ./sonar --db mydb.db --lineage @lineage.txt
This should work for basically all match parameters that take multiple values (--acc, --lineage, --zip, --date, ...).
--acc
--lineage
--zip
--date
Also works for restore, remove, and vcf output arguments.
restore
remove
Closes #7
All match query parameters can now be read from a file instead of having to include them all in the command line. To use this, prefix the name of the file with a "@" character. For example, the following two queries are the same:
and
This should work for basically all match parameters that take multiple values (
--acc
,--lineage
,--zip
,--date
, ...).