Skip to content

Commit

Permalink
update module docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
pdimens committed Oct 18, 2021
1 parent 284aa97 commit 715ac66
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/PopGenSims.jl
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
"""
# Population genetics simulations
Repository: https://www.github.com/pdimens/PopGenSims.jl/
Documentation: https://biojulia.net/PopGen.jl/
\nA few things things you can do to get started:
## Import Data using PopGenCore
- `PopGenCore.read(filename; kwargs...)`
- `genepop(infile; kwargs...)` or similar file-specific importer
- use available `@gulfsharks` or `@nancycats` datasets
## Simulate Samples within Populations
- `simulate(popdata, n = 100)` to simulate samples using population-specific allele frequencies
## Simulate breeding crosses
- `cross(popdata, parent1, parent2, ...)` to cross two parents from the same PopData
- `cross(popdata => parent1, popdata => parent2, ...) to cross two parents from different PopData (e.g. backcross)
## Simulate siblingship
- `simulate_sibship(popdata, fullsib = , halfsib = , unrelated = , ...)` to simulate breeding events generating pairs of individuals of known kinship.
"""
module PopGenSims

using DataFrames, PooledArrays, StaticArrays
Expand Down

2 comments on commit 715ac66

@pdimens
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register branch=dev

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/46977

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.3.0 -m "<description of version>" 715ac663a24a1739fa1a66f8816a2074b3e14101
git push origin v0.3.0

Please sign in to comment.