I'm not sure why you would need it, but I think the following code does what 
you are looking for.
    
    
    import sequtils, unicode
    
    const
      dna_norm = "ACGTacgtNn-"
      dna_comp = "TGCAtgcaNn-"
      a = dna_norm.toRunes().mapIt(it.toUTF8)
      b = dna_comp.toRunes().mapIt(it.toUTF8)
    
    echo a.zip(b)
    
    

Reply via email to