Analyzing ambiguous alignments #267
kclem
started this conversation in
Troubleshooting
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
If you have an unexpected number of ambiguous alignments, you can figure out what is going on using these strategies:
python plotAmbiguous.py
) on a completed CRISPResso run (run with the '--write_detailed_allele_table' parameter).Here are the parameters:
The script will pull out ambiguous reads and plot allele tables showing the alignment to the relevant amplicons.
--expand_ambiguous_alignments
If more than one reference amplicon is given, reads that align to multiple reference amplicons will count equally toward each amplicon. Default behavior is to exclude ambiguous alignments. (default: False)
--assign_ambiguous_alignments_to_first_reference
If more than one reference amplicon is given, ambiguous reads that align with the same score to multiple amplicons will be assigned to the first amplicon. Default behavior is to exclude ambiguous alignments. (default: False)
--fastq_output
flag. This will create a fastq file with annotations for each read with alignments and alignment scores to each amplicon. Using this file you can see the why each read was assigned 'AMBIGUOUS'.Beta Was this translation helpful? Give feedback.
All reactions