# HG changeset patch # User sanbi-uwc # Date 1463659133 14400 # Node ID d60316b849a131bb29d8fe28f74029f5a8ebcdc5 # Parent 71a3f4a25de30a513ccd889209f9d5c22838798b planemo upload for repository https://github.com/SANBI-SA/tools-sanbi-uwc.git commit c995ab52e8a43df67dc18c70aa70830f7568fc8b diff -r 71a3f4a25de3 -r d60316b849a1 build_ctb_gene.py --- a/build_ctb_gene.py Thu May 19 07:51:29 2016 -0400 +++ b/build_ctb_gene.py Thu May 19 07:58:53 2016 -0400 @@ -35,6 +35,9 @@ print("Error running the build_ctb_gene goterms", file=sys.stderr) if build_ctb_run: self.copy_output_file_to_dataset() + print("Building a new DB, current time: %s" % str(datetime.date.today())) + print("Noe4j Database Name: http://%s:%s@%s:%s/db/data/" % (self.args.username, self.args.password, self.args.url, self.args.port)) + print("GFF File - Input: %s" % str(self.args.input_file)) def newSplit(self, value): lex = shlex.shlex(value) @@ -77,9 +80,6 @@ ctb_gene_runner = BuildCtbRunner(args) ctb_gene_runner.build_ctb_gene() - print("Building a new DB, current time: %s" % str(datetime.date.today())) - print("Noe4j Database Name: http://%s:%s@%s:%s/db/data/" % (args.username, args.password, args.url, args.port)) - print("GFF File - Input: %s" % str(args.input_file)) if __name__ == "__main__": main()