rbbt-study 0.2.22 → 0.2.23
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.
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
ZGYzNzEzZjBkZWRlMGU4N2Q5ZDUxOTA5YThhOWQxZmJlY2M3ODU4Yw==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
YTFjZjNiMGIwNTkwNDc3ZjQyMWE4YjlkYzk2YWNiMDFmMTA1NDQ5Ng==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
MmRmODk4ZGMxOTVlYzY5ZjQ1ZTEwM2JkNzM4MzFhN2Q4Mzg1OWUxMTM2NGQ2
|
|
10
|
+
NzM4MmI3MmM5NjBjYjE5M2QzMDM2ZGE1OGNiM2MzYTk5NDBlMmE1MjUwZWFk
|
|
11
|
+
NjgzNTFlY2QwNjk4MTA3ZmVjODU5YjI0M2ZiMTUxMDA0Y2E3MzE=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ZDllZjIwNWRkODEwNWUwYTFjMzdhNGQzZWM0MzI3MTFiZDdmOGVlMmViZjBi
|
|
14
|
+
ZTJjZDgwZDc5ZWU5NzFlZWJjZGU4MGNhNzQzOWEwZDViMDM4MjdmMTA2NzNj
|
|
15
|
+
NjBkOWQxYzcxYTkzOTBmMmNiYzNkNTM5MjZiYThkYTUwNDcyYjQ=
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
module Sample
|
|
2
2
|
property :cnvs => :array2single do
|
|
3
|
-
study.cnv_cohort
|
|
3
|
+
study.has_cnv? ? study.cnv_cohort : {}
|
|
4
4
|
end
|
|
5
5
|
|
|
6
6
|
property :has_cnv? => :array2single do
|
|
7
|
-
study.
|
|
7
|
+
study.has_cnv? ? cnvs.values_at(*self).collect{|cnvs| not cnvs.nil?} : [false] * self.length
|
|
8
8
|
end
|
|
9
9
|
|
|
10
10
|
property :gene_CN => :single do
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
module Sample
|
|
2
2
|
property :methylation => :array2single do
|
|
3
|
-
study.methylation_cohort
|
|
3
|
+
study.has_methylation? ? study.methylation_cohort : {}
|
|
4
4
|
end
|
|
5
5
|
|
|
6
6
|
property :has_methylation? => :array2single do
|
|
7
|
-
study.methylation_cohort.values_at(*self).collect{|methylation| not methylation.nil?}
|
|
7
|
+
study.has_methylation? ? study.methylation_cohort.values_at(*self).collect{|methylation| not methylation.nil?} : [false] * self.length
|
|
8
8
|
end
|
|
9
9
|
|
|
10
10
|
property :methylated => :single do
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rbbt-study
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.23
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Miguel Vazquez
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-12-
|
|
11
|
+
date: 2013-12-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: This gem add the study entity with suport for NGS, Microarray and other
|
|
14
14
|
types of data
|