# HG changeset patch # User iuc # Date 1601492867 0 # Node ID aed013f6b13b6a746de86dad7c60da686c946124 # Parent 0ad85e7db2fc94e29f0ce7dd985d6255d840571a "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsnp commit 94e69abb568077267eb8b15ef624624e2899a750" diff -r 0ad85e7db2fc -r aed013f6b13b vsnp_add_zero_coverage.py --- a/vsnp_add_zero_coverage.py Sun Sep 27 10:07:44 2020 +0000 +++ b/vsnp_add_zero_coverage.py Wed Sep 30 19:07:47 2020 +0000 @@ -3,11 +3,12 @@ import argparse import multiprocessing import os -import pandas -import pysam import queue import re import shutil + +import pandas +import pysam from Bio import SeqIO INPUT_BAM_DIR = 'input_bam_dir' diff -r 0ad85e7db2fc -r aed013f6b13b vsnp_build_tables.py --- a/vsnp_build_tables.py Sun Sep 27 10:07:44 2020 +0000 +++ b/vsnp_build_tables.py Wed Sep 30 19:07:47 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']]