Skip to content

Commit

Permalink
update default cutoffs
Browse files Browse the repository at this point in the history
  • Loading branch information
rpetit3 authored Aug 26, 2024
1 parent 9d48a59 commit caacfa5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Releases

## v2.2.1 rpetit3/pasty "HB13" - 2024/08/25

- adjust default parameters for `--min-pident` and `--min-coverage` to 90 each

## v2.2.0 rpetit3/pasty "JBPA" - 2024/08/25

- add default parameters for `--min-pident` and `--min-coverage` in the YAML
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ pasty --help
│ [required] │
│ --outdir -o PATH Directory to write output [default: ./] │
│ --prefix -p TEXT Prefix to use for output files [default: camlhmp] │
│ --min-pident INTEGER Minimum percent identity to count a hit [default: 80] │
│ --min-coverage INTEGER Minimum percent coverage to count a hit [default: 80] │
│ --min-pident INTEGER Minimum percent identity to count a hit [default: 90] │
│ --min-coverage INTEGER Minimum percent coverage to count a hit [default: 90] │
│ --force Overwrite existing reports │
│ --verbose Increase the verbosity of output │
│ --silent Only critical errors will be printed │
Expand Down
6 changes: 3 additions & 3 deletions data/pa-osa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
id: "pasty" # id of the schema
name: "P. aeruginosa serogrouping" # name of the schema
description: "Serogrouping of Pseudomonas aeruginosa isolates" # description of the schema
version: "2.2.0" # version of the schema
version: "2.2.1" # version of the schema
curators: # A list of curators of the schema
- "Robert A. Petit III"

Expand All @@ -14,8 +14,8 @@ engine:
type: blast # The type of tool used to generate the data
tool: blastn # The tool used to generate the data
params:
min_pident: 80 # The minimum percent identity for a hit to be considered
min_coverage: 80 # The minimum query coverage for a hit to be considered
min_pident: 90 # The minimum percent identity for a hit to be considered
min_coverage: 90 # The minimum query coverage for a hit to be considered

# targets provides a list of sequence targets (primers, genes, proteins, etc...)
targets:
Expand Down

0 comments on commit caacfa5

Please sign in to comment.