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
It produces the error AttributeError: ‘list’ object has no attribute ‘split’ (line 83 of circ_quant.py). It seems like the BAM file input is having trouble being split because the elements are not strings, but I'm skeptical this is actually the case because fixing it would require changing the source code (probably not a good idea).
I am fairly new to bioinformatics and only somewhat experienced with coding, so I'm unsure how to proceed from here. Any potential solutions or suggestions for debugging would be immensely helpful.
I've included the full pipeline below, which is a slightly modified version of @bounlu 's CLEAR with STAR Alignment pipeline. I've tested all the steps separately, which work as they should except the very last circ_quant step.
Hello! I am having some trouble getting the
circ_quant
function to work. My code is as follows:circ_quant -c "$name/circRNA_out/circularRNA_known.txt" -b "$name/Aligned.sortedByCoord.out.bam" -r "$ref_genome.ref.txt" -o "$name.circRNA_quant.txt"
It produces the error
AttributeError: ‘list’ object has no attribute ‘split’
(line 83 of circ_quant.py). It seems like the BAM file input is having trouble being split because the elements are not strings, but I'm skeptical this is actually the case because fixing it would require changing the source code (probably not a good idea).I am fairly new to bioinformatics and only somewhat experienced with coding, so I'm unsure how to proceed from here. Any potential solutions or suggestions for debugging would be immensely helpful.
I've included the full pipeline below, which is a slightly modified version of @bounlu 's CLEAR with STAR Alignment pipeline. I've tested all the steps separately, which work as they should except the very last
circ_quant
step.The text was updated successfully, but these errors were encountered: