src/problems/rstr.lisp @ c26fa4d063ba

REAR
author Steve Losh <steve@stevelosh.com>
date Wed, 18 Sep 2019 11:52:27 -0400
parents 474d88a2af2e
children 2735aa6aab79
(in-package :rosalind)

(defparameter *input-rstr* "90000 0.6
ATAGCCGA")

(defparameter *output-rstr* "0.689")


(define-problem rstr (data stream)
    *input-rstr*
    *output-rstr*
  (let* ((n (read data))
         (gc (coerce (read data) 'double-float))
         (dna (read-line data))
         (prob (sequence-probability gc dna)))
    (float-string (- 1 (expt (- 1 prob) n)))))