Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Emmtyper characterization template - Fixed path to blast database and update params #339

Merged
merged 2 commits into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
### Credits

Code contributions to the new version:
- [Daniel Valle](https://github.com/Daniel-VM)


### Template fixes and updates
- Fixed path to blast database and update Emmtyper params [#339](https://github.com/BU-ISCIII/buisciii-tools/pull/339)

### Modules

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ cat <<EOF > _01_emmtyper.sbatch
# create results folder
mkdir -p 01-typing
mkdir -p 01-typing/tmps
blastdb_path=/data/bi/references/cdc_emm_blastdb
blastdb_path=/data/bi/references/cdc_emm_blastdb/20240509

# Run emmtyper
singularity exec \\
Expand All @@ -63,9 +63,9 @@ singularity exec \\
/data/bi/pipelines/singularity-images/singularity-emmtyper.0.2.0--py_0 emmtyper \\
-w blast \\
--keep \\
--blast_db "\${blastdb_path}/cdc_emm_database29042024" \\
--percent-identity 95 \\
--culling-limit 5 \\
--blast_db "\${blastdb_path}/cdc_emm_database" \\
--percent-identity 100 \\
--culling-limit 5 \
--output 01-typing/results_emmtyper.out \\
--output-format verbose \\
./fasta_inputs/*.fasta
Expand Down
Loading