Re: [Biojava-l] Reverse transcription

2005-08-15 Thread Jacob Rohde
Hi, On 8/15/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Take a look at http://www.biojava.org/docs/bj_in_anger/ReverseComplement.htm > > > Thanks for you replies Mark. Yes, I've read about the reverseComplement. It may be I'm dense here, but I can't see how it can help me go from RNA to

Re: [Biojava-l] Reverse transcription

2005-08-15 Thread mark . schreiber
Surprisingly there is not a method ro reverseTranslation in RNATools, I might add one. It does however give a nice opportunity to see how biojava translates symbols from one Alphabet to another. You would do it like this: public static SymbolList rt(SymbolList rna) throws IllegalSymbolEx

Re: [Biojava-l] Reverse transcription

2005-08-15 Thread Jacob Rohde
Hi again, On 8/15/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Surprisingly there is not a method ro reverseTranslation in RNATools, I > might add one. It does however give a nice opportunity to see how biojava > translates symbols from one Alphabet to another. > > [SNIP code] Hey thanks f

Re: [Biojava-l] Reverse transcription

2005-08-15 Thread mark . schreiber
>I just wanna note that if somebody writes it up for the cookbook, note >that the code snippet by Mark isn't symmetric with transcribeToRNA(). >I put in a DNATools.complement() to make it just so. Changing strand, alphabet and polarity all in one go wrecks my head. ___