Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
bc0bc1f to
c68878a
Compare
Codecov ReportAll modified lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #211 +/- ##
=======================================
Coverage 91.77% 91.78%
=======================================
Files 17 17
Lines 1593 1594 +1
=======================================
+ Hits 1462 1463 +1
Misses 131 131
☔ View full report in Codecov by Sentry. |
| parameters = {tdl::Node{ | ||
| .name = executable_name[executable_name.size() - i], | ||
| .tags = {"basecommand"}, | ||
| .value = parameters, |
There was a problem hiding this comment.
The value is again the parameters that is just filled?
There was a problem hiding this comment.
good question!
I changed slightly what TDL is expecting.
Imagine we have a call like raptor build --input somefile.fa --kmer 5, then --input and --kmer are subparameters of build. This is now better reflected in TDL.
But I don't know if someone is calling raptor ..., or raptor build or something like git remote add ....
So I fill parameters with --input and --kmer and than later nest it into a build section. (or if there are more subcommands, multiple iterations).
The basecommand is a special tag for TDL/CWL expressing that the name has to be part of the command line.
| info.cliMapping.emplace_back("", name); | ||
| parameters = {tdl::Node{ | ||
| .name = executable_name[executable_name.size() - i], | ||
| .tags = {"basecommand"}, |
There was a problem hiding this comment.
I have no real clue what's going on. But if the tag here is basecommand and a value is given, shouldn't at least one test have a value at the basecommand output below?
There was a problem hiding this comment.
basecommand is a special tag (we have other special tags, like output or directory). It marks that the name of this node/section has to be attached to the command line.
|
I will keep this on hold, since there some fixes here: |
81e604d to
2cf993d
Compare
2cf993d to
f442586
Compare
|
On hold until this is fixed: |
f442586 to
6b54ce2
Compare
Update sharg to newest TDL