Genomes
Provides Genome classes for the ATHENA
project
providing for alternative genome types with corresponding
mapping and initialization approaches.
Genome
A GE genome.
Source code in src/athenage/grape/genomes.py
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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
|
all_cross_loc()
Return location for a cross over entire genome
Source code in src/athenage/grape/genomes.py
83 84 85 |
|
consumed(rule_used)
Returns True if all codons have been used
Source code in src/athenage/grape/genomes.py
35 36 37 |
|
crossover_onepoint(genome2, pos1, pos2)
cross over genomes and return new ones Args: genome2:second geome to cross with this one pos1: codon position for cross on in the genome pos2: codon position for cross on second genome
Returns:
Name | Type | Description |
---|---|---|
new_genome1 |
Genome
|
Genome |
new_genome2 |
Genome
|
Genome |
Source code in src/athenage/grape/genomes.py
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
|
crossover_twopoint(genome2, pos1, pos2)
cross over genomes and return new ones Args: genome2:second geome to cross with this one pos1: codon positions designating start/end of slice for this genome pos2: codon positions designating start/end of slice for second genome
Returns:
Name | Type | Description |
---|---|---|
new_genome1 |
Genome
|
Genome |
new_genome2 |
Genome
|
Genome |
Source code in src/athenage/grape/genomes.py
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
|
effective_cross_loc()
Return a list that contains the position for crossover
Source code in src/athenage/grape/genomes.py
79 80 81 |
|
get_next_codon(rule_used)
Get next codon from genome for mapping. Store rule used requested for the codon.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
rule_used |
int
|
index of rule used in grammar |
required |
Returns:
Name | Type | Description |
---|---|---|
codon |
int
|
codon value |
Source code in src/athenage/grape/genomes.py
44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
|
random_fill(genome_length)
Fill genome with random codons
Source code in src/athenage/grape/genomes.py
30 31 32 33 |
|
reset_map_index()
Reset the genome so that get_next_codon starts with first codon
Source code in src/athenage/grape/genomes.py
39 40 41 42 |
|
rule_used(codon_idx)
Get rule used for the codon during mapping
Parameters:
Name | Type | Description | Default |
---|---|---|---|
codon_idx |
int
|
index of codon to check |
required |
Returns:
Type | Description |
---|---|
int
|
int of the rule used in grammar |
Source code in src/athenage/grape/genomes.py
59 60 61 62 63 64 65 66 67 68 |
|
LeapGenome
Bases: Genome
A GE genome.
Source code in src/athenage/grape/genomes.py
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 |
|
add_tail(n_codons)
Convert n_codons to complete frames
Source code in src/athenage/grape/genomes.py
159 160 161 162 163 |
|
all_cross_loc()
Return location for a cross over entire genome
Source code in src/athenage/grape/genomes.py
208 209 210 |
|
consumed(rule_used)
Returns True if all codons have been used
Source code in src/athenage/grape/genomes.py
171 172 173 174 175 176 177 |
|
crossover_onepoint(genome2, pos1, pos2)
cross over genomes and return new ones Args: genome2: LeapGenome to cross with pos1: contains frame to cross for this genome pso2: contains frame to cross at second genome
Returns; new_genome1: LeapGenome new_genome2: LeapGenome
Source code in src/athenage/grape/genomes.py
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 |
|
effective_cross_loc()
Return a list that contains the frame for crossover
Source code in src/athenage/grape/genomes.py
204 205 206 |
|
finalize()
Convert any unset codons to hold random values
Source code in src/athenage/grape/genomes.py
155 156 157 |
|
get_next_codon(rule_used)
Get next codon from genome for mapping
Parameters:
Name | Type | Description | Default |
---|---|---|---|
rule_used |
int
|
index of rule used in grammar |
required |
Returns:
Name | Type | Description |
---|---|---|
codon |
int
|
codon value or False if no next codon |
Source code in src/athenage/grape/genomes.py
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 |
|
new_frame()
Return new frame initialized to be empty
Source code in src/athenage/grape/genomes.py
140 141 142 |
|
random_fill(genome_length)
Fill genome with frames containing random codons
Source code in src/athenage/grape/genomes.py
165 166 167 168 169 |
|
reset_map_index()
Reset the genome so that get_next_codon starts with first frame
Source code in src/athenage/grape/genomes.py
179 180 181 182 |
|
MCGEGenome
Bases: Genome
A GE genome.
Source code in src/athenage/grape/genomes.py
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 |
|
add_tail(n_codons)
Add tail to each chrom
Source code in src/athenage/grape/genomes.py
257 258 259 260 261 |
|
all_cross_loc()
Return location for a cross over entire genome
Source code in src/athenage/grape/genomes.py
332 333 334 335 336 337 |
|
consumed(rule_used)
Returns True if all codons have been used
Source code in src/athenage/grape/genomes.py
270 271 272 |
|
crossover_onepoint(genome2, pos1, pos2)
cross over genomes and return new ones Args: genome2: MCGEGenome to cross with pos1: contains [chrom,position] to cross for this genome pso2: contains [chrom,position] to cross at second genome
Returns; new_genome1: MCGEGenome created after crossover new_genome2: MCGEGenome created after crossover
Source code in src/athenage/grape/genomes.py
339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 |
|
effective_cross_loc()
Return a list that contains the frame for crossover
Source code in src/athenage/grape/genomes.py
325 326 327 328 329 330 |
|
get_next_codon(rule_used)
Get next codon from genome for mapping
Parameters:
Name | Type | Description | Default |
---|---|---|---|
rule_used |
int
|
index of rule used in grammar |
required |
Returns:
Name | Type | Description |
---|---|---|
codon |
int
|
codon value or False if no next codon |
Source code in src/athenage/grape/genomes.py
278 279 280 281 282 283 284 285 286 287 288 289 |
|
random_fill(genome_length)
Fill genome with chromosomes that equal genome length
Source code in src/athenage/grape/genomes.py
263 264 265 266 267 268 |
|
reset_map_index()
Reset the genome so that get_next_codon starts with first frame
Source code in src/athenage/grape/genomes.py
274 275 276 |
|
set_codon(codon_idx, value, invalid)
Sets specified codon. Calculates chromosome and position for codon to match index passed
Parameters:
Name | Type | Description | Default |
---|---|---|---|
codon_idx |
int
|
overall codon position to alter |
required |
value |
int
|
new codon value |
required |
invalid |
bool
|
when True use all codons to calculate position |
required |
Returns:
Type | Description |
---|---|
None
|
None |
Source code in src/athenage/grape/genomes.py
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 |
|
size()
Returns average size of a chromosome
Source code in src/athenage/grape/genomes.py
250 251 252 253 254 255 |
|