Mercurial > repos > peterjc > mira4_assembler
diff tools/mira4_0/mira4_bait.py @ 39:bbf14bb9607b draft default tip
planemo upload for repository https://github.com/peterjc/galaxy_mira/tree/master/tools/mira4_0 commit 89578746a1c5b29c84a173d8b2709f086f69a7b6
author | peterjc |
---|---|
date | Mon, 03 Jun 2019 13:29:00 -0400 |
parents | cee8f9005e43 |
children |
line wrap: on
line diff
--- a/tools/mira4_0/mira4_bait.py Wed Jul 11 12:35:35 2018 -0400 +++ b/tools/mira4_0/mira4_bait.py Mon Jun 03 13:29:00 2019 -0400 @@ -18,9 +18,12 @@ # however there is some pipe error when doing that here. cmd = [mira_binary, "-v"] try: - child = subprocess.Popen(cmd, universal_newlines=True, - stdout=subprocess.PIPE, - stderr=subprocess.STDOUT) + child = subprocess.Popen( + cmd, + universal_newlines=True, + stdout=subprocess.PIPE, + stderr=subprocess.STDOUT, + ) except Exception as err: sys.stderr.write("Error invoking command:\n%s\n\n%s\n" % (" ".join(cmd), err)) sys.exit(1) @@ -40,10 +43,14 @@ mira_path = os.environ["MIRA4"] mira_binary = os.path.join(mira_path, "mirabait") if not os.path.isfile(mira_binary): - sys.exit("Missing mirabait under $MIRA4, %r\nFolder contained: %s" - % (mira_binary, ", ".join(os.listdir(mira_path)))) + sys.exit( + "Missing mirabait under $MIRA4, %r\nFolder contained: %s" + % (mira_binary, ", ".join(os.listdir(mira_path))) + ) else: - sys.stderr.write("DEBUG: Since $MIRA4 is not set, assuming mira binaries are on $PATH.\n") + sys.stderr.write( + "DEBUG: Since $MIRA4 is not set, assuming mira binaries are on $PATH.\n" + ) mira_path = None mira_binary = "mirabait" @@ -55,7 +62,16 @@ sys.exit(0) -format, output_choice, strand_choice, kmer_length, min_occurance, bait_file, in_file, out_file = sys.argv[1:] +( + format, + output_choice, + strand_choice, + kmer_length, + min_occurance, + bait_file, + in_file, + out_file, +) = sys.argv[1:] if format.startswith("fastq"): format = "fastq" @@ -67,9 +83,20 @@ assert out_file.endswith(".dat") out_file_stem = out_file[:-4] -cmd_list = [mira_binary, "-f", format, "-t", format, - "-k", kmer_length, "-n", min_occurance, - bait_file, in_file, out_file_stem] +cmd_list = [ + mira_binary, + "-f", + format, + "-t", + format, + "-k", + kmer_length, + "-n", + min_occurance, + bait_file, + in_file, + out_file_stem, +] if output_choice == "pos": pass elif output_choice == "neg": @@ -90,9 +117,12 @@ start_time = time.time() try: # Run MIRA - child = subprocess.Popen(cmd_list, universal_newlines=True, - stdout=subprocess.PIPE, - stderr=subprocess.STDOUT) + child = subprocess.Popen( + cmd_list, + universal_newlines=True, + stdout=subprocess.PIPE, + stderr=subprocess.STDOUT, + ) except Exception as err: sys.stderr.write("Error invoking command:\n%s\n\n%s\n" % (cmd, err)) sys.exit(1) @@ -105,8 +135,7 @@ if return_code: sys.stderr.write(stdout) - sys.exit("Return error code %i from command:\n%s" % (return_code, cmd), - return_code) + sys.exit("Return error code %i from command:\n%s" % (return_code, cmd), return_code) # Capture output out_tmp = out_file_stem + "." + format