src/rosalind/p002.clj @ 7f4e6345e260

Do the first few problems.
author Steve Losh <steve@stevelosh.com>
date Mon, 12 Nov 2012 12:36:49 -0500
parents (none)
children (none)
(ns rosalind.p002
  (:refer-clojure :exclude [replace])
  (:require [clojure.string :refer [replace]]))


(defn solve [s]
  (replace s "T" "U"))

(solve "GATGGAACTTGACTACGTAAATT")

(solve (slurp "/Users/sjl/Downloads/rosalind_rna.txt"))