Skip to content

Commit

Permalink
makedb partial for mouse TR
Browse files Browse the repository at this point in the history
  • Loading branch information
ggabernet committed Sep 4, 2024
1 parent e106235 commit 0b8fa48
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- [#344](https://github.com/nf-core/airrflow/pull/344) Avoid saving pRESTO intermediate fastq files in results directory.
- [#344](https://github.com/nf-core/airrflow/pull/344) Simplified pRESTO Maskprimers score and Maskprimers extract processes.
- [#344](https://github.com/nf-core/airrflow/pull/344) Fix clustersets approach, consider both reads clusters annotation.
- [#344](https://github.com/nf-core/airrflow/pull/344) Allow for partial alignments in MakeDB for mouse TCR data, to bypass junction check for TRAV germlines with additional positions (e.g. 84A).

### `Dependencies`

Expand Down
3 changes: 2 additions & 1 deletion modules/local/changeo/changeo_makedb.nf
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@ process CHANGEO_MAKEDB {

script:
def args = task.ext.args ?: ''
def partial = meta.species.toLowerCase()=='mouse' && meta.locus.toLowerCase()=='tr' ? '--partial' : ''
"""
MakeDb.py igblast -i $igblast -s $reads -r \\
${reference_fasta}/${meta.species.toLowerCase()}/vdj/ \\
$args \\
$args $partial \\
--outname ${meta.id} > ${meta.id}_makedb_command_log.txt
cat <<-END_VERSIONS > versions.yml
Expand Down

0 comments on commit 0b8fa48

Please sign in to comment.