i set $mlength = @RNAseq but after it gives me the number of start codons, the program freezes well dos freezes and nothing more, i have to restart dos
i am trying to find the start codon in a sequence, the start codon is a 3 letter sequence from rna 'AUG', i dont understand this mlength part, i got this piece of code from somewhere else. My guess would be that its supposed to be position of start codon?
hi im writing this code to determine number of start codons after but I keep getting an error, this is the following code
RNAseq = split('', $RNA);
$nstart = 0; #number of start codons
$start = 'AUG';
for ($i=0; $i<$mlength -2; $i ++)
{
@codon = @RNAseq[$i, $i+1, $i+2];
$cod = join(''...
Hey I wrote the following program that checks for a dna sequence (letters ATGC only), it converts all lower atgc to uppercase and checks to see if its only dna sequence, if it is not dna sequence it terminates, however it says that to all sequences I write, even if I input correct dna sequence...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.