Browse code

Fixed CRISPRater

fortinj2 authored on 17/07/2022 01:07:33
Showing 2 changed files

... ...
@@ -1,5 +1,5 @@
1 1
 Package: crisprScore
2
-Version: 1.1.6
2
+Version: 1.1.7
3 3
 Date: 2022-06-30
4 4
 Title: On-Target and Off-Target Scoring Algorithms for CRISPR gRNAs
5 5
 Authors@R: c(
... ...
@@ -35,7 +35,8 @@ getCRISPRaterScores <- function(sequences){
35 35
         stop("Provided sequences must have length 20nt (20nt-spacer")
36 36
     }
37 37
     results <- .getModelScoreCRISPRater(sequences)
38
-    return(results)
38
+    out <- data.frame(score=results)
39
+    return(out)
39 40
 }
40 41
 
41 42