tskit-dev / tskit-site

tskit website
Other
0 stars 8 forks source link

Add slim website #149

Closed benjeffery closed 1 year ago

benjeffery commented 1 year ago

Fixes #1

bhaller commented 1 year ago

LGTM

I guess we can merge and ask @bhaller to have a quick look to check once it's up?

Let me know what URL to look at, once it's public, sure. :->

benjeffery commented 1 year ago

Let me know what URL to look at, once it's public, sure. :->

https://tskit.dev/software/SLiM.html

bhaller commented 1 year ago

Let me know what URL to look at, once it's public, sure. :->

https://tskit.dev/software/SLiM.html

Thanks @benjeffery. Comments:

initialize() {
    initializeTreeSeq();
    initializeMutationRate(1e-8);
    initializeMutationType("m1", 0.5, "e", 0.001);
    initializeGenomicElementType("g1", m1, 1.0);
    initializeGenomicElement(g1, 0, 99999);
    initializeRecombinationRate(1e-8);
}
1 early() {
    sim.addSubpop("p1", 500);
}
2000 late() {
    sim.treeSeqOutput("out.trees");
}

Constrictor 1