Skip to content

Commit a7846e4

Browse files
authored
More robust default thresholds
1 parent 45f0244 commit a7846e4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

panphlan_profiling.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@ def read_params():
5858
p.add_argument('--right_min', type=float, default=0.75, # v1.0: 0.82
5959
help='Strain presence/absence plateau curve threshold: right min [0.75]')
6060
# Gene families presence/absence threshold
61-
p.add_argument('--th_non_present', type=float, default = 0.05,
61+
p.add_argument('--th_non_present', type=float, default = 0.25,
6262
help='Gene families threshold: not present if lower')
63-
p.add_argument('--th_present', type=float, default = 0.1,
63+
p.add_argument('--th_present', type=float, default = 0.5,
6464
help='Gene families threshold: present if higher')
65-
p.add_argument('--th_multicopy', type=float, default = 0.15,
65+
p.add_argument('--th_multicopy', type=float, default = 1.5,
6666
help='Gene families threshold: multicopy if higher')
6767
# filter similarity
6868
p.add_argument('--strain_similarity_perc', metavar='SIMILARITY_PERCENTAGE', type=float, default=50.0,

0 commit comments

Comments
 (0)