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
Hello,
I used samtools mpileup and ivar variants to identify codon and amino acid changes in assembled genomes with reference genome and .gff3 files. It turned out the codon and amino acid listed in the .tsv file don't match the actual codon and amino acid in reference CDS and protein fasta files.
Below is the command I used:
mpi_cmd_str = f'samtools mpileup -aa -A -d 20000 -B -Q 0 {sample}.sorted.bam '
ivar_cmd_str = f'ivar variants -p mutations -q 30 -t 0.03 -r {ref_file} -g {gff_file}'
cmd_str = mpi_cmd_str + " | " + ivar_cmd_str
os.system(cmd_str)
As an example, in the excel screenshot below you can find the sequence validation for SARS-CoV-2 ORF1ab.
Any suggestion?
Thank you very much!
The text was updated successfully, but these errors were encountered:
Hello,
I used samtools mpileup and ivar variants to identify codon and amino acid changes in assembled genomes with reference genome and .gff3 files. It turned out the codon and amino acid listed in the .tsv file don't match the actual codon and amino acid in reference CDS and protein fasta files.
Below is the command I used:
mpi_cmd_str = f'samtools mpileup -aa -A -d 20000 -B -Q 0 {sample}.sorted.bam '
ivar_cmd_str = f'ivar variants -p mutations -q 30 -t 0.03 -r {ref_file} -g {gff_file}'
cmd_str = mpi_cmd_str + " | " + ivar_cmd_str
os.system(cmd_str)
As an example, in the excel screenshot below you can find the sequence validation for SARS-CoV-2 ORF1ab.
![screenshot](https://private-user-images.githubusercontent.com/112007035/296900528-9efa3e46-18ab-48e9-aabc-ede614403bb0.jpg?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk0NTk5NjcsIm5iZiI6MTczOTQ1OTY2NywicGF0aCI6Ii8xMTIwMDcwMzUvMjk2OTAwNTI4LTllZmEzZTQ2LTE4YWItNDhlOS1hYWJjLWVkZTYxNDQwM2JiMC5qcGc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjUwMjEzJTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI1MDIxM1QxNTE0MjdaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT02ODQyNGMwODY4NTI2OGEwYTE0YThmNmE5ZDdmYmQ1ZDdkZDg3NTFjNTc2Y2E5Y2QzYjRlOWQwNjk0ZDE5MzY5JlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.QItzCzUxh4I-p-yBwHJJgYmwqn0uM0MCqeqnk5zT80Q)
Any suggestion?
Thank you very much!
The text was updated successfully, but these errors were encountered: