diff build_ctb_gene.py @ 19:d60316b849a1 draft

planemo upload for repository https://github.com/SANBI-SA/tools-sanbi-uwc.git commit c995ab52e8a43df67dc18c70aa70830f7568fc8b
author sanbi-uwc
date Thu, 19 May 2016 07:58:53 -0400
parents 71a3f4a25de3
children 06bd61e33a18
line wrap: on
line diff
--- 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()