diff tools/mira4_0/mira4_make_bam.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_make_bam.py	Wed Jul 11 12:35:35 2018 -0400
+++ b/tools/mira4_0/mira4_make_bam.py	Mon Jun 03 13:29:00 2019 -0400
@@ -10,10 +10,13 @@
 
 def run(cmd, log_handle):
     try:
-        child = subprocess.Popen(cmd, shell=True,
-                                 universal_newlines=True,
-                                 stdout=subprocess.PIPE,
-                                 stderr=subprocess.STDOUT)
+        child = subprocess.Popen(
+            cmd,
+            shell=True,
+            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))
         # TODO - call clean up?
@@ -32,17 +35,27 @@
 
 
 def depad(fasta_file, sam_file, bam_file, log_handle):
-    log_handle.write("\n================= Converting MIRA assembly from SAM to BAM ===================\n")
+    log_handle.write(
+        "\n================= Converting MIRA assembly from SAM to BAM ===================\n"  # noqa: E501
+    )
     # Also doing SAM to (uncompressed) BAM during depad
-    bam_stem = bam_file + ".tmp"  # Have write permissions and want final file in this folder
-    cmd = 'samtools depad -S -u -T "%s" "%s" | samtools sort - "%s"' % (fasta_file, sam_file, bam_stem)
+    bam_stem = (
+        bam_file + ".tmp"
+    )  # Have write permissions and want final file in this folder
+    cmd = 'samtools depad -S -u -T "%s" "%s" | samtools sort - "%s"' % (
+        fasta_file,
+        sam_file,
+        bam_stem,
+    )
     return_code = run(cmd, log_handle)
     if return_code:
         return "Error %i from command:\n%s" % (return_code, cmd)
     if not os.path.isfile(bam_stem + ".bam"):
         return "samtools depad or sort failed to produce BAM file"
 
-    log_handle.write("\n====================== Indexing MIRA assembly BAM file =======================\n")
+    log_handle.write(
+        "\n====================== Indexing MIRA assembly BAM file =======================\n"  # noqa: E501
+    )
     cmd = 'samtools index "%s.bam"' % bam_stem
     return_code = run(cmd, log_handle)
     if return_code:
@@ -60,7 +73,9 @@
     if not os.path.isfile(fasta_file):
         return "Missing padded FASTA file: %r" % fasta_file
 
-    log_handle.write("\n====================== Converting MIRA assembly to SAM =======================\n")
+    log_handle.write(
+        "\n====================== Converting MIRA assembly to SAM =======================\n"  # noqa: E501
+    )
     tmp_dir = tempfile.mkdtemp()
     sam_file = os.path.join(tmp_dir, "x.sam")