From c4ddb43890c1be473b525b096ed347086ab28721 Mon Sep 17 00:00:00 2001 From: Diego Javier Zea Date: Mon, 25 Feb 2013 17:50:43 -0300 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f1a7c396..50edf4af 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ does not permit overloading the `.` operator yet.) See also the section on composite types that simulate `.` access (this is what `@pyimport` does). For example, using [Biopython](http://biopython.org/wiki/Seq) we can do: - @pyimport Bio.seq as s + @pyimport Bio.Seq as s @pyimport Bio.Alphabet as a my_dna = s.Seq("AGTACACTGGT", a.generic_dna) my_dna[:find]("ACT")