# HG changeset patch # User iuc # Date 1601492843 0 # Node ID a52b819aa990e67eb9800f5e6e98af58f8aa5033 # Parent 0bc0009f9ea04aa19df2433dc78c22ba69072b7b "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsnp commit 94e69abb568077267eb8b15ef624624e2899a750" diff -r 0bc0009f9ea0 -r a52b819aa990 vsnp_add_zero_coverage.py --- a/vsnp_add_zero_coverage.py Sun Sep 27 10:08:14 2020 +0000 +++ b/vsnp_add_zero_coverage.py Wed Sep 30 19:07:23 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 0bc0009f9ea0 -r a52b819aa990 vsnp_build_tables.py --- a/vsnp_build_tables.py Sun Sep 27 10:08:14 2020 +0000 +++ b/vsnp_build_tables.py Wed Sep 30 19:07:23 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']]