Skip to content

Commit

Permalink
fix(lib): add missing output groovy class
Browse files Browse the repository at this point in the history
  • Loading branch information
pbelmann committed Feb 12, 2025
1 parent 866717a commit 44467db
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions lib/Output.groovy
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
class Output {
static String getOutput(sample, runid, tool, module, filename){
return sample + '/' + runid + '/' + module.name + '/' +
module.version.major + "." +
module.version.minor + "." +
module.version.patch +
'/' + tool + '/' + filename
}

}

0 comments on commit 44467db

Please sign in to comment.