diff --git a/janis_bioinformatics/tools/pmac/gatherfilesformultiqc.py b/janis_bioinformatics/tools/pmac/gatherfilesformultiqc.py index 38cfd8fb..1b9d7cd7 100644 --- a/janis_bioinformatics/tools/pmac/gatherfilesformultiqc.py +++ b/janis_bioinformatics/tools/pmac/gatherfilesformultiqc.py @@ -9,6 +9,7 @@ Directory, String, ) + from janis_unix.tools.unixtool import UnixTool @@ -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 + """