ms-ident 0.0.19 → 0.0.20
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/VERSION +1 -1
- data/lib/ms/ident/peptide_hit/qvalue.rb +2 -2
- metadata +2 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.20
|
|
@@ -13,8 +13,8 @@ class Ms::Ident::PeptideHit
|
|
|
13
13
|
class << self
|
|
14
14
|
|
|
15
15
|
# writes to the file, adding an extension
|
|
16
|
-
def to_phq(base, hits, qvalues=
|
|
17
|
-
to_file(base + FILE_EXTENSION, hits)
|
|
16
|
+
def to_phq(base, hits, qvalues=[])
|
|
17
|
+
to_file(base + FILE_EXTENSION, hits, qvalues)
|
|
18
18
|
end
|
|
19
19
|
|
|
20
20
|
# writes the peptide hits to a phq.tsv file. qvalues is a parallel array
|