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
terminate called after throwing an instance of 'boost::exception_detail::clone_impl<boost::exception_detail::error_info_injector<boost::program_options::invalid_option_value> >' ') for option '--input-file' is invalid
#65
Open
pameyaw opened this issue
Mar 10, 2023
· 0 comments
hello,
This is an error I had when I tried to run my script I wrote for my project.
I run the same script on a different pc and I didn't get this same error
Please how can I fix it.
terminate called after throwing an instance of 'boost::exception_detail::clone_impl<boost::exception_detail::error_info_injectorboost::program_options::invalid_option_value >'
') for option '--input-file' is invalid
hello,
This is an error I had when I tried to run my script I wrote for my project.
I run the same script on a different pc and I didn't get this same error
Please how can I fix it.
terminate called after throwing an instance of 'boost::exception_detail::clone_impl<boost::exception_detail::error_info_injectorboost::program_options::invalid_option_value >'
') for option '--input-file' is invalid
THIS IS THE SCRIPT
#!/bin/bash
home=/mnt/c/Users/SAM 2017/Desktop/sena
mkdir variant_calls
ref=k13.fa.gz
tracy index $ref
samtools faidx $ref
Variant Calling and convert bcf to vcf file
for i in$ref -o ./variant_calls/$ {i} ${i}.ab1;
ls *.ab1 | sed -e 's/\.ab1//'
;do
echo $i
tracy decompose -v -a plasmodium_falciparum -r
done
The text was updated successfully, but these errors were encountered: