diff vsnp_build_tables.py @ 1:e52300a0000f draft

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsnp commit 94e69abb568077267eb8b15ef624624e2899a750"
author iuc
date Wed, 30 Sep 2020 19:05:39 +0000
parents 4f98ba28a3f2
children 0829f8039858
line wrap: on
line diff
--- a/vsnp_build_tables.py	Fri May 08 16:58:19 2020 +0000
+++ b/vsnp_build_tables.py	Wed Sep 30 19:05:39 2020 +0000
@@ -3,10 +3,11 @@
 import argparse
 import multiprocessing
 import os
+import queue
+import re
+
 import pandas
-import queue
 import pandas.io.formats.excel
-import re
 from Bio import SeqIO
 
 INPUT_JSON_AVG_MQ_DIR = 'input_json_avg_mq_dir'
@@ -32,7 +33,7 @@
         # Create an annotation file.
         annotation_file = "%s_annotations.csv" % group
         with open(annotation_file, "a") as fh:
-            for index, row in positions.iterrows():
+            for _, row in positions.iterrows():
                 pos = row.position
                 try:
                     aaa = pro.iloc[pro.index.get_loc(int(pos))][['chrom', 'locus', 'product', 'gene']]