We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Benchmark:
import msprime import time before = time.perf_counter() ts = msprime.sim_ancestry( 10000, sequence_length=1000000, population_size=10_000, recombination_rate=1e-8, random_seed=1234, ) ts = msprime.sim_mutations(ts, rate=1e-7, random_seed=1) duration = time.perf_counter() - before print(f"Simulation of {ts.num_trees} trees done after {duration:.2f} seconds") for _ in range(10): for var in ts.variants(): pass
Result:
This is because the version of variants introduced in #2397 always looks at ts.tables.sites.position. This was released in 0.5.1.
ts.tables.sites.position
The text was updated successfully, but these errors were encountered:
Add direct access to all non-ragged table arrays
c106abe
Also remove most references to self.tables from the TreeSequence class, resolving a number of performance/memory issues. Closes tskit-dev#1916 Closes tskit-dev#1917 Closes tskit-dev#2423 Closes tskit-dev#2427
d655c44
4e863d8
01ef912
ada9596
No branches or pull requests
Benchmark:
Result:

This is because the version of variants introduced in #2397 always looks at
ts.tables.sites.position
. This was released in 0.5.1.The text was updated successfully, but these errors were encountered: