Skip to content

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
  • Loading branch information
anwarMZ committed Mar 1, 2023
2 parents caf5ff1 + 87b06c6 commit a283815
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion bin/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def select_snpeff_records(eff_string, ao_count):
eff_list = eff_string.split(",")

# if any records in the row contain '|p.', take only those records
EFF_records_list = [s for s in eff_list if '|p.' in s]
EFF_records_list = [s for s in eff_list if '|p.' or 'LOF' in s]

# if no records contain '|p.', take the "intergenic" record
if len(EFF_records_list) == 0:
Expand Down
1 change: 1 addition & 0 deletions conf/profiles.config
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ profiles {
podman.enabled = false
shifter.enabled = false
charliecloud.enabled = false
conda.createTimeout = '1 h'
includeConfig 'conda.config'
}
mamba {
Expand Down

0 comments on commit a283815

Please sign in to comment.