Skip to content

Commit

Permalink
More robust default thresholds
Browse files Browse the repository at this point in the history
  • Loading branch information
leonarDubois authored Nov 3, 2021
1 parent 45f0244 commit a7846e4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions panphlan_profiling.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@ def read_params():
p.add_argument('--right_min', type=float, default=0.75, # v1.0: 0.82
help='Strain presence/absence plateau curve threshold: right min [0.75]')
# Gene families presence/absence threshold
p.add_argument('--th_non_present', type=float, default = 0.05,
p.add_argument('--th_non_present', type=float, default = 0.25,
help='Gene families threshold: not present if lower')
p.add_argument('--th_present', type=float, default = 0.1,
p.add_argument('--th_present', type=float, default = 0.5,
help='Gene families threshold: present if higher')
p.add_argument('--th_multicopy', type=float, default = 0.15,
p.add_argument('--th_multicopy', type=float, default = 1.5,
help='Gene families threshold: multicopy if higher')
# filter similarity
p.add_argument('--strain_similarity_perc', metavar='SIMILARITY_PERCENTAGE', type=float, default=50.0,
Expand Down

0 comments on commit a7846e4

Please sign in to comment.