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.41 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.40 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.39 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.38 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.37 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.36 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.35 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.34 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.33 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.32 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.31 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.30 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.29 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.28 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.27 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.26 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.24 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.23 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.22 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d
trackler-2.0.8.21 tracks/dlang/exercises/rna-transcription/rna_transcription_example.d