-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprotein-oop.rb
executable file
·73 lines (61 loc) · 1.67 KB
/
protein-oop.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# Simulating gene expression toggling using OOP
class Gene
attr_accessor :expression, :locked
def initialize(ex)
@expression = ex
@locked = true
end
def express
puts "expressing #{@expression}..." unless locked
@expression unless locked
end
end
class ProteinComplex
attr_accessor :name, :protein_template, :protein_complex
def initialize(name, protein_template)
@name = name
@protein_template = protein_template
@protein_complex = protein_template.keys.zip([nil]).to_h
end
def gobble_protein(p)
puts "gobbling #{p} into #{protein_template}...."
if protein_template.key(p)
protein_complex[protein_template.key(p)] = p
protein_template.delete(protein_template.key(p))
if protein_template.empty?
protein_complex
end
end
end
end
a = ProteinComplex.new("hemoglobin-ish", {0=>"alpha-globin", 1=>"beta-globin", 2=>"delta-globin", 3=>"quattro-goblin"})
x = Gene.new("alpha-globin")
y = Gene.new("beta-globin")
z = Gene.new("delta-globin")
puts "#{a.name} has the protein template: #{a.protein_template}. Can you fill it in?\n"
20.times do
puts
"Available genes and their coiled status (type number to turn on/off):"
[x,y,z].each do |gene|
puts "#{gene.expression}: #{gene.locked ? 'locked' : 'reading' }"
end
u = gets.chomp
dict = {
"1" => x,
"2" => y,
"3" => z
}
if dict[u]
dict[u].locked = !dict[u].locked
else
puts "No item for #{u}...."
end
[x,y,z].each do |g|
puts "gobbling protein..."
if a.gobble_protein(g.express)
puts "#{a.name} has the proteins...#{a.protein_complex}"
puts "#{a.name} complete! Goodbye"
exit
end
end
end