rbbt-study 0.2.11 → 0.2.12
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NThmMjg1OTZlYzk0NGVhYmU2YmRiMDg2NjI3MGFiNDA5NGY0MDlkOQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
M2EzYWE2MTllNGE3NjZkMTMwYjcyYmVjN2FhMjg3Y2VlOGFjNjE1Yw==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
YjZkZmJiNDcyMWI3MTA3MDQ1ODc5ODBmM2E1Y2NhMWY1YTU2ZDFkNzg3MGE4
|
10
|
+
NDZiNTAwOWEyYjFjMzc3NTRmMmYyODYyODFiODIxMDFkMjVkMDBhYTMxMTA4
|
11
|
+
Mjk0NGIzNGZiOWE5NzQxZTY4YzEwZGNjMWVhNzJkZjdmYjg3MzU=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MjRlYmI5YTk1NGUyYWMwOTRmMDZjNDBmZmJjOTE3YWYxMTc5Mjc0ZWRmMDk2
|
14
|
+
YTEyNDJkYWFjYTc1MmRiZjdhYzIxODJkNmIzNTQ4ZmE2ZjNjZTg0NmViNGVl
|
15
|
+
YjA5MmIzZGNmZTMyZTFlMDI4NjY4MGQzOGExZjJhMGYzZGIyN2U=
|
@@ -103,6 +103,6 @@ module Study
|
|
103
103
|
name = File.basename(f)
|
104
104
|
genomic_mutations = Open.read(f).split("\n").sort
|
105
105
|
GenomicMutation.setup(genomic_mutations, name, organism, watson)
|
106
|
-
end.tap{|cohort| cohort.extend Genotype::Cohort
|
106
|
+
end.tap{|cohort| cohort.extend Genotype::Cohort}
|
107
107
|
end
|
108
108
|
end
|
@@ -1,6 +1,6 @@
|
|
1
1
|
module Study
|
2
2
|
property :all_mutations do
|
3
|
-
cohort.metagenotype.tap{|o| o.jobname = "All mutations in #{ self }" }
|
3
|
+
cohort.metagenotype.tap{|o| o.jobname = "All mutations in #{ self }"; o.organism ||= organism; o.watson ||= watson }
|
4
4
|
end
|
5
5
|
|
6
6
|
property :relevant_mutations do
|