No project description provided
Project description
Flexsweep v2.0
(In development, not recommended for end users. Need to solve RAM issues when performing large number of simulations ~200K. All the statistic are uneficiently saved on a Dataframe where most values are nan, was easy to work with).
The second version of Flexsweep software, a versatile tool for detecting selective sweeps. The software trains a convolutional neural network (CNN) to classify genomic loci as sweep or neutral regions. The workflow begins with simulating data under an appropriate demographic model and classify regions as neutral or sweeps, including several selection events regarding sweep strength, age, starting allele frequency (softness), and ending allele frequency (completeness).
The new version simplifies and streamlines the project structure, files, simulations, summary statistics estimation and allows for the easy addition of custom CNN architectures. The software takes advantage of demes to simulate custom demography histories and main scikit-allel data structures to avoid external software and temporal files. The whole pipeline is parallelized using joblib. We included optimized versions of iSAFE, DIND, hapdaf, S ratio, freqs as well as the custom HAF and H12 as described in Flexsweep manuscript. The software now is also able to run the following statistics: Here are the metrics:
- $\Delta$-IHH: https://doi.org/10.1126/science.1183863
- $\pi$: https://scikit-allel.readthedocs.io/en/stable/stats/diversity.html#allel.mean_pairwise_difference
- $\theta_{W}$: https://scikit-allel.readthedocs.io/en/stable/stats/diversity.html#allel.watterson_theta
- Kelly's $Z_{nS}$: https://doi.org/10.1093/genetics/146.3.1197
- $\omega_{max}$: https://doi.org/10.1534/genetics.103.025387
- Fay & Wu's H: https://doi.org/10.1534/genetics.106.061432
- Zeng's E: https://doi.org/10.1534/genetics.106.061432
- Fu & Li's D and F: https://doi.org/10.1093/genetics/133.3.693
- LASSI $T$ and $m$: https://doi.org/10.1093/molbev/msaa115
Similarly to the first version, Flexsweep works in three main steps: simulation, summary statistics estimation (feature vectors), and training/classification. Once installed, you can access the Command Line Interface to run any module as needed.
data folder includes a static-compiled version of discoal, which reduces the virtual memory needed (tested on CentOS, Ubuntu and PopOS!). Such binary is automatically accesed if no other discoal binary is provided. It also includes multiple demes demography models, including the YRI population history estimated by Speidel et al. 2019.
Installation
pip install flexsweep
conda install -c bioconda flexsweep
Tutorial
Simulation
Running from CLI. By default it only uses 1 thread and simulate $10^4$ neutral and sweep simulation each case. Comma-separated values will draw mutation or recombination rate values from a Uniform distribution while single values will draw mutation or recombination rate values from a Exponential distribution.
flexsweep --help
Usage: flexsweep simulator [OPTIONS]
Run the discoal Simulator
Options:
--sample_size INTEGER Sample size for the simulation
[required]
--mutation_rate TEXT Mutation rate. For two comma-separated
values, the first will be used as the
lower bound and the second as the upper
bound for a uniform distribution. A
single value will be treated as the mean
for an exponential distribution.
[required]
--recombination_rate TEXT Mutation rate. For two comma-separated
values, the first will be used as the
lower bound and the second as the upper
bound for a uniform distribution. A
single value will be treated as the mean
for an exponential distribution.
[required]
--locus_length INTEGER Length of the locus [required]
--demes TEXT Path to the demes YAML model file
[required]
--output_folder TEXT Folder where outputs will be saved
[required]
--time TEXT Start/end adaptive mutation range timing
--discoal_path TEXT Path to the discoal executable
--num_simulations INTEGER Number of neutral and sweep simulations
--nthreads INTEGER Number of threads for parallelization
--help Show this message and exit.
Simulating $10^5$ neutral and sweep scenarios using human mutation rate estimation from Smith et al. 2019
flexsweep simulator --sample_size 100 --mutation_rate 5e-9,2e-8 --recombination_rate 1e-8 --locus_length 1200000 --demes data/constant.yaml --output_folder training_eq --num_simulations 100000 --nthreads 100
Feature vectors from simulations
The command will output a parquet file containing the feature vectors input to train Flexsweep CNN as well as the neutral expected values to normalize prediction from empirical data.
flexsweep fvs-discoal --help
Usage: flexsweep fvs-discoal [OPTIONS]
Run the summary statistic estimation from discoal simulation to create CNN
input feature vectors. Will create two file: a parquet dataframe and a
pickle dictionary containing neutral expectation and stdev
Options:
--simulations_path TEXT Path containing neutral and sweeps discoal
simulations. [required]
--nthreads INTEGER Number of threads [required]
--help Show this message and exit.
flexsweep fvs-discoal --simulation_path training_eq --nthreads 100
Feature vectors from VCF
The command parse a VCF file by sliding window creating each corresponding HaplotypeArray. To parallel reading the software create a priori genomic positions ranges so the VCF contig_name and contig_length must be inputted to avoid reading the entire VCF.
Note that fvs-discoal must be run before fvs-vcf to properly create the neutral_bin data. It outputs a parquet file containing the feature vectors input to train Flexsweep CNN normalized by neutral expectation.
flexsweep fvs-vcf --help
Usage: flexsweep fvs-vcf [OPTIONS]
Run the summary statistic estimation from a VCF file to create CNN input
feature vectors. Feature vector file will be written within
Options:
--vcf_path TEXT VCF file to parse. Must be indexed [required]
--neutral_bin TEXT Neutral bin data from discoal simulations
[required]
--nthreads INTEGER Number of threads [required]
--recombination_map TEXT Recombination map. Decode CSV format:
Chr,Begin,End,cMperMb,cM
--help Show this message and exit.
Training/prediction
Train Flexsweep CNN with the normalized feature vectors to classify neutral and sweep regions.
flexsweep cnn --help
--mode train will output a CNN model for later classification in the selected output_folder, ROC curve and training history plots. Note that --mode train must be executed before --mode predict because it will search the CNN model prior to predict execution.
Usage: flexsweep cnn [OPTIONS]
Run the Flexsweep CNN
Options:
--mode [train|predict] Mode: 'train' or 'predict' [required]
--data TEXT Path to the training data [required]
--output_folder TEXT Output folder for the CNN model and logs [required]
--model TEXT Input a pretrained model
--help Show this message and exit.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file flexsweep-0.2.1.tar.gz.
File metadata
- Download URL: flexsweep-0.2.1.tar.gz
- Upload date:
- Size: 484.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.10.12 Linux/6.9.3-76060903-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a599798259bb9898a08788492a4a20f1f55fbcfa9fdf645c7a61e541840243b0
|
|
| MD5 |
9ffb105f3ea513b02826017ac65f610e
|
|
| BLAKE2b-256 |
6b9a20c087d47a2a5ac807dcdffa216b96e2d4421c28e04d5bbc9265e198cb2f
|
File details
Details for the file flexsweep-0.2.1-py3-none-any.whl.
File metadata
- Download URL: flexsweep-0.2.1-py3-none-any.whl
- Upload date:
- Size: 487.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.10.12 Linux/6.9.3-76060903-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f23d192891a0e326226f3d3a31350f4f6c7fc13c4c830302e42a8aad0e6cd1e
|
|
| MD5 |
7c0afdeaba7ab2a32d74034eb710c22a
|
|
| BLAKE2b-256 |
bafd4365e7e2af85d7bffcc63edfef3d8fbeba30f2b1a3ed6b1665fa28a7c303
|