From 9465e826c46b5ecff26269ed8594dcb1f1530f48 Mon Sep 17 00:00:00 2001 From: Marcus Fedarko Date: Fri, 1 Sep 2023 01:24:04 -0700 Subject: [PATCH] DOC: expl binary --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 39ae280..056d139 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,8 @@ s1 = "AGCAGGAGATAAACCTGT" s2 = "AGCAGGTTATCTACCTGT" k = 3 -# Create the matrix +# Create the matrix (the "binary" parameter means we'll distinguish forward, +# reverse-complementary, and palindromic matching k-mers from each other) m = wotplot.DotPlotMatrix(s1, s2, k, binary=False) # Visualize the matrix using matplotlib.imshow()