Skip to content

Commit e43e896

Browse files
committed
added missing arguments and bumped version
1 parent b049dab commit e43e896

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

panaroo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
'''An updated pipeline for pangenome investigation'''
2-
__version__ = '1.5.3'
2+
__version__ = '1.6.0'

panaroo/generate_qc_plots.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ def plot_mash_contam(mash_contam_file, outdir):
346346
return
347347

348348

349-
def generate_qc_plot(method, input_files, outdir, n_cpu, ref_db=None, no_plot=False):
349+
def generate_qc_plot(method, input_files, outdir, n_cpu, ref_db=None, no_plot=False, random_seed=1):
350350

351351
# plot MDS
352352
if method in ["mds", "all"]:

panaroo/integrate.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,11 @@ def get_options(
101101
type=float,
102102
default=0.1)
103103

104+
matching.add_argument("--family_len_dif_percent",
105+
dest="family_len_dif_percent",
106+
help="length difference cutoff at the gene family level (default=0.0)",
107+
type=float)
108+
104109
parser.add_argument(
105110
"--min_edge_support_sv",
106111
dest="min_edge_support_sv",
@@ -301,6 +306,7 @@ def main():
301306
len_dif_percent=args.len_dif_percent,
302307
pid=args.id,
303308
family_threshold=args.family_threshold,
309+
family_len_dif_percent=args.family_len_dif_percent,
304310
length_outlier_support_proportion=args.
305311
length_outlier_support_proportion,
306312
merge_para=args.merge_paralogs,

panaroo/merge_graphs.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,7 @@ def merge_graphs(directories,
256256
len_dif_percent,
257257
pid,
258258
family_threshold,
259+
family_len_dif_percent,
259260
length_outlier_support_proportion,
260261
merge_para,
261262
output_dir,

0 commit comments

Comments
 (0)