You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running the pipeline subcommand with --extra-modules advntr, a TypeError occurs in the adVNTR HMM alignment step:
2024-12-24 12:28:51,082 - root - ERROR - Error during processing of deletions and insertions: cannot convert float NaN to integer
...
TypeError: unsupported operand type(s) for +=: 'NoneType' and 'str'
This error prevents adVNTR from completing successfully and halts the pipeline.
When running the
pipeline
subcommand with--extra-modules advntr
, aTypeError
occurs in the adVNTR HMM alignment step:This error prevents adVNTR from completing successfully and halts the pipeline.
Steps to Reproduce
vntyper pipeline --bam /path/to/example.bam --threads 4 --reference-assembly hg19 --keep-intermediates -o out/example_1 --archive-results --extra-modules advntr
TypeError
in the output log.Expected Behavior
TypeError
.NoneType
values should be handled gracefully or converted properly.Environment
advntr==1.3.3
vntyper==2.0.0-alpha.xx
(or current version)Additional Context
enhanced_hmm
. Requires thorough testing before merging.Possible Solutions
enhanced_hmm
branch changes into the main or stable branch ofadVNTR
.NaN
or type mismatches inside the HMM alignment logic.The text was updated successfully, but these errors were encountered: