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
on cofolded sequences, the label is correct on the first sequence, but on the second sequence the first label is wrong
<script type='text/javascript'> var alignment = "AAAAAAAAGGAAAAAAAAA&AAAAAAAAAAAAAAAAAAAAAAACCAAACACA" var dotbracket = "........((.........&.......................))......." var container = new fornac.FornaContainer("#cofold_ss", {'allowPanningAndZooming': true, 'initialSize':[500,300]}); var options = {'structure': dotbracket, 'sequence': alignment, 'circularizeExternal': false, 'applyForce': true, 'labelInterval': 5, 'name':'test' }; container.addRNA(options.structure, options); container.setSize(); </script>
results in:
on 1 sequence the label is correctly at 5,10,15,20; on the other sequence it is at 4, 9, 14,...
the length of the sequence with the correct labelling (sequence 1) influences the offset of the labels on the second sequence:
when var alignment = "AAAAAAAAGGAAAAAAAAAA&AAAAAAAAAAAAAAAAAAAAAAACCAAACACA" var dotbracket = "........((..........&.......................))......."
(sequence 1 has length=20) then the first label on sequence 2 is at 3
The text was updated successfully, but these errors were encountered:
on cofolded sequences, the label is correct on the first sequence, but on the second sequence the first label is wrong
<script type='text/javascript'> var alignment = "AAAAAAAAGGAAAAAAAAA&AAAAAAAAAAAAAAAAAAAAAAACCAAACACA" var dotbracket = "........((.........&.......................))......." var container = new fornac.FornaContainer("#cofold_ss", {'allowPanningAndZooming': true, 'initialSize':[500,300]}); var options = {'structure': dotbracket, 'sequence': alignment, 'circularizeExternal': false, 'applyForce': true, 'labelInterval': 5, 'name':'test' }; container.addRNA(options.structure, options); container.setSize(); </script>
results in:
on 1 sequence the label is correctly at 5,10,15,20; on the other sequence it is at 4, 9, 14,...
the length of the sequence with the correct labelling (sequence 1) influences the offset of the labels on the second sequence:
when
var alignment = "AAAAAAAAGGAAAAAAAAAA&AAAAAAAAAAAAAAAAAAAAAAACCAAACACA" var dotbracket = "........((..........&.......................))......."
(sequence 1 has length=20) then the first label on sequence 2 is at 3
The text was updated successfully, but these errors were encountered: