Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

return selected indices #12

Merged
merged 4 commits into from
Jan 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions chromax/functional.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
"""Functional module."""
from functools import partial
from typing import Callable
from typing import Callable, Tuple

import jax
import jax.numpy as jnp
from jaxtyping import Array, Float
from jaxtyping import Array, Float, Int

from .typing import N_MARKERS, Haploid, Individual, Parents, Population

Expand Down Expand Up @@ -142,7 +142,7 @@ def select(
population: Population["n"],
k: int,
f_index: Callable[[Population["n"]], Float[Array, "n"]],
) -> Population["k"]:
) -> Tuple[Population["k"], Int[Array, "k"]]:
"""Function to select individuals based on their score (index).

:param population: input grouped population of shape (n, m, d)
Expand All @@ -154,8 +154,8 @@ def select(
(n, m, 2) and returns an array of n float number.
:type f_index: Callable

:return: output population of (k, m, d)
:rtype: ndarray
:return: output population of shape (k, m, d), output indices of shape (k,)
:rtype: tuple of two ndarrays

:Example:
>>> from chromax import functional
Expand All @@ -168,10 +168,10 @@ def select(
>>> marker_effects = np.random.randn(n_chr * chr_len)
>>> gebv_model = TraitModel(marker_effects[:, None])
>>> f_index = conventional_index(gebv_model)
>>> f2 = functional.select(f1, k=10, f_index=f_index)
>>> f2, selected_indices = functional.select(f1, k=10, f_index=f_index)
>>> f2.shape
(10, 1000, 2)
"""
indices = f_index(population)
_, best_pop = jax.lax.top_k(indices, k)
return population[best_pop, :, :]
return population[best_pop, :, :], best_pop
12 changes: 7 additions & 5 deletions chromax/simulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ def select(
population: Population["_g n"],
k: int,
f_index: Optional[Callable[[Population["n"]], Float[Array, "n"]]] = None,
) -> Population["_g k"]:
) -> Tuple[Population["_g k"], Int[Array, "_g k"]]:
"""Function to select individuals based on their score (index).

:param population: input population of shape (n, m, d),
Expand All @@ -423,19 +423,21 @@ def select(
i.e. the sum of the marker effects masked with the SNPs from the genetic_map.
:type f_index: Callable

:return: output population of shape (k, m, d) or (g, k, m, d),
depending on the input population.
:rtype: ndarray
:return: output population of shape (k, m, d) or (g, k, m, d), depending on the input
population, and respective indices of shape (k,) or (g, k)
:rtype: tuple of two ndarrays

:Example:
>>> from chromax import Simulator, sample_data
>>> simulator = Simulator(genetic_map=sample_data.genetic_map, trait_names=["Yield"])
>>> f1 = simulator.load_population(sample_data.genome)
>>> len(f1), simulator.GEBV(f1).mean().values
(371, [8.223844])
>>> f2 = simulator.select(f1, k=20)
>>> f2, selected_indices = simulator.select(f1, k=20)
>>> len(f2), simulator.GEBV(f2).mean().values
(20, [14.595136])
>>> selected_indices.shape
(20,)
"""
if f_index is None:
f_index = conventional_index(self.GEBV_model)
Expand Down
2 changes: 1 addition & 1 deletion examples/sample_usage.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
}
],
"source": [
"selected_ind = simulator.select(population, k=10)\n",
"selected_ind, _ = simulator.select(population, k=10)\n",
"simulator.GEBV(selected_ind).mean()"
]
},
Expand Down
8 changes: 4 additions & 4 deletions examples/time_wheat_bp.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,18 @@ def wheat_schema(
# dh_lines2 = simulator.double_haploid(f1[100*factor:], n_offspring=100)
# dh_lines = jax.numpy.concatenate((dh_lines1, dh_lines2))

headrows = simulator.select(dh_lines, 5, visual_selection(simulator, seed=7))
headrows, _ = simulator.select(dh_lines, 5, visual_selection(simulator, seed=7))
headrows = headrows.reshape(1000 * factor, -1, 2)

envs = simulator.create_environments(num_environments=16)
pyt = simulator.select(
pyt, _ = simulator.select(
headrows, k=100 * factor, f_index=phenotype_index(simulator, envs[0])
)
ayt = simulator.select(
ayt, _ = simulator.select(
pyt, k=10 * factor, f_index=phenotype_index(simulator, envs[:4])
)

released_variety = simulator.select(
released_variety, _ = simulator.select(
ayt, k=1, f_index=phenotype_index(simulator, envs)
)

Expand Down
14 changes: 8 additions & 6 deletions examples/wheat_bp.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,25 @@ def wheat_schema(
) -> Tuple[Population["50"], Individual]:
f1, _ = simulator.random_crosses(germplasm, 100)
dh_lines = simulator.double_haploid(f1, n_offspring=100)
headrows = simulator.select(
headrows, _ = simulator.select(
dh_lines, k=5, f_index=visual_selection(simulator, seed=7)
).reshape(len(dh_lines) * 5, *dh_lines.shape[2:])
hdrw_next_cycle = simulator.select(
hdrw_next_cycle, _ = simulator.select(
dh_lines.reshape(dh_lines.shape[0] * dh_lines.shape[1], *dh_lines.shape[2:]),
k=20,
f_index=visual_selection(simulator, seed=7),
)

envs = simulator.create_environments(num_environments=16)
pyt = simulator.select(headrows, k=50, f_index=phenotype_index(simulator, envs[0]))
pyt_next_cycle = simulator.select(
pyt, _ = simulator.select(
headrows, k=50, f_index=phenotype_index(simulator, envs[0])
)
pyt_next_cycle, _ = simulator.select(
headrows, k=20, f_index=phenotype_index(simulator, envs[0])
)
ayt = simulator.select(pyt, k=10, f_index=phenotype_index(simulator, envs[:4]))
ayt, _ = simulator.select(pyt, k=10, f_index=phenotype_index(simulator, envs[:4]))

released_variety = simulator.select(
released_variety, _ = simulator.select(
ayt, k=1, f_index=phenotype_index(simulator, envs)
)

Expand Down
3 changes: 2 additions & 1 deletion tests/test_functional.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,9 @@ def test_select():
marker_effects = np.random.randn(n_markers)
gebv_model = TraitModel(marker_effects[:, None])
f_index = conventional_index(gebv_model)
f2 = functional.select(f1, k=k, f_index=f_index)
f2, best_indices = functional.select(f1, k=k, f_index=f_index)
assert f2.shape == (k, *f1.shape[1:])
assert best_indices.shape == (k,)

f1_gebv = gebv_model(f1)
f2_gebv = gebv_model(f2)
Expand Down
17 changes: 13 additions & 4 deletions tests/test_simulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,21 +123,30 @@ def test_select():
population = simulator.load_population(n_ind, ploidy=ploidy)
pop_GEBV = simulator.GEBV(population)

selected_pop = simulator.select(population, k=10)
k = 10
selected_pop, selected_indices = simulator.select(population, k=k)
assert selected_pop.shape == (k, n_markers, ploidy)
assert selected_indices.shape == (k,)
selected_GEBV = simulator.GEBV(selected_pop)
assert np.all(selected_GEBV.mean() > pop_GEBV.mean())
assert np.all(selected_GEBV.max() == pop_GEBV.max())
assert np.all(selected_GEBV.min() > pop_GEBV.min())
GEBV_indices = pop_GEBV.iloc[selected_indices]
assert np.all(GEBV_indices.reset_index(drop=True) == selected_GEBV)

k = 5
dh = simulator.double_haploid(population, n_offspring=100)
selected_dh = simulator.select(dh, k=5)
assert selected_dh.shape == (n_ind, 5, n_markers, ploidy)
selected_dh, selected_indices = simulator.select(dh, k=k)
assert selected_dh.shape == (n_ind, k, n_markers, ploidy)
assert selected_indices.shape == (n_ind, k)
for i in range(n_ind):
dh_GEBV = simulator.GEBV(dh[i])
selected_GEBV = simulator.GEBV(selected_dh[i])
assert np.all(selected_GEBV.mean() > dh_GEBV.mean())
assert np.all(selected_GEBV.max() == dh_GEBV.max())
assert np.all(selected_GEBV.min() > dh_GEBV.min())
GEBV_indices = dh_GEBV.iloc[selected_indices[i]]
assert np.all(GEBV_indices.reset_index(drop=True) == selected_GEBV)


def test_random_crosses():
Expand Down Expand Up @@ -190,7 +199,7 @@ def test_device():
GEBV = simulator.GEBV_model(population)
assert GEBV.device_buffer.device() == device

selected_pop = simulator.select(population, k=10)
selected_pop, _ = simulator.select(population, k=10)
assert selected_pop.device_buffer.device() == device

diallel = simulator.diallel(selected_pop, n_offspring=10)
Expand Down