Sha256: ed8c19a4a8783db216aabbb5fd2cf98610d1f1554dd094fa1223e794031f96e4

Contents?: true

Size: 402 Bytes

Versions: 181

Compression:

Stored size: 402 Bytes

Contents

module rna_transcription;

import std.exception;
import std.regex;
import std.string;

immutable dchar[dchar] rnaTransTable;

static this() {
 rnaTransTable = [
     'C': 'G',
     'G': 'C',
     'T': 'A',
     'A': 'U'];
}

enum dnaRegex = regex(r"^[CGTA]*$");

string dnaComplement(string dna) {
    enforce(dna.matchFirst(dnaRegex), "Invalid DNA string");
    return dna.translate(rnaTransTable);
}

Version data entries

181 entries across 181 versions & 1 rubygems

Version Path
trackler-2.0.8.20 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.19 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.18 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.17 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.16 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.15 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.14 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.13 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.12 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.11 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.10 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.9 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.8 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.7 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.6 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.5 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.4 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.3 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.2 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.1 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d