Skip to content

Commit

Permalink
Merge pull request #119 from PMCC-BioinformaticsCore/release-v0.11.3
Browse files Browse the repository at this point in the history
Add required metadata to gatherfilesformultiqc
  • Loading branch information
rlupat authored Nov 19, 2021
2 parents 8338b2f + 0746697 commit ff11340
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion janis_bioinformatics/tools/pmac/gatherfilesformultiqc.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
Directory,
String,
)

from janis_unix.tools.unixtool import UnixTool


Expand Down Expand Up @@ -53,6 +54,17 @@ def arguments(self):
ToolArgument(";", position=2, shell_quote=False),
ToolArgument("cp", position=3, shell_quote=False),
]

def tool_provider(self):
return "Peter MacCallum Cancer Centre"

def version(self):
return "v0.1.0"

def bind_metadata(self):
self.metadata.documentation = """gather files to a folder for multiqc"""
self.metadata.dateCreated = datetime(2021, 11, 1)
self.metadata.dateUpdated = datetime(2020, 11, 19)
self.metadata.contributors = ["Jiaan Yu"]
self.metadata.documentation = """\
Gather Files for MultiQC
"""

0 comments on commit ff11340

Please sign in to comment.