absee 0.0.2 → 0.0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/absee.rb +5 -5
- metadata +1 -1
data/lib/absee.rb
CHANGED
@@ -13,12 +13,12 @@
|
|
13
13
|
#checks for ABIF file type
|
14
14
|
#major ABIF versions greater than 1 are not supported
|
15
15
|
#
|
16
|
-
|
17
|
-
#
|
18
|
-
#
|
16
|
+
#Example:
|
17
|
+
# >>readAB("/my_sequence.ab1")
|
18
|
+
# => six arrays: trace data for A, C, G, T, called sequence, and peak indexes
|
19
19
|
#
|
20
|
-
|
21
|
-
#
|
20
|
+
#Arguements:
|
21
|
+
# filename: (String)
|
22
22
|
def readAB(filename)
|
23
23
|
#opens ab1 as a File object
|
24
24
|
abFile = open(filename)
|