src/problems/rstr.lisp @ dbd94aef5f92
SETO
author | Steve Losh <steve@stevelosh.com> |
---|---|
date | Fri, 20 Dec 2019 17:12:23 -0500 |
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)))))