Conversation
standage
commented
Dec 7, 2019
|
|
||
| - `ID`: a unique identifier for this population across all sources | ||
| - `Name`: a free-text description of the population, intended to be human readable | ||
| - `Xref`: optional cross-reference |
Member
Author
There was a problem hiding this comment.
The Xref column was added back as a requirement for population tables.
standage
pushed a commit
that referenced
this pull request
Sep 11, 2024
This update makes sweeping changes to the genotype simulation and sequencing code. - The `sim` module no longer performs sequencing and focuses entirely on haplotype simulation. - The `seq` module now handles simulated Illumina sequencing of both simple (single contributor) and mixture (multi contributor) samples. - The `mix` module merges simple genotypes into a simulated mixture sample. - The `mixture` module has been dropped, and its functionality is covered by the more granular `sim`, `mix`, and `seq` modules. This update also replaced all references to `microhapulator.cli.parse_args()` with `microhapulator.cli.get_parser().parse_args()`. The former is used to configure runtime logging, which for some reason causes issues in a testing environment. Closes #44.
standage
added a commit
that referenced
this pull request
Sep 11, 2024
Oops. These changes were supposed to be part of #45.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
While preparing for #42, I discovered that the 26 global populations from the 1000 Genomes Project are included in the 96 ALFRED populations, under different IDs. This update adds a new data source to the
dbbuilddirectory, and the 26 1KGP population definitions were moved fromdbbuild/sources/alfred/todbbuild/sources/1kgp/. At the moment, themarker.tsvandfrequency.tsvfiles indbbuild/sources/1kgpare empty, but frequency data will be added as part of #42.Closes #44.