Skip to main content

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 formats data structures to avoid external software and temporal files. We included optimized versions of iSAFE, DIND, hapdaf, S ratio, freqs as well as the custom HAF and H12 as described in Flexsweep. The software now is also able to run the following statistics:

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

Options:
  --vcf TEXT             VCF file to parse. Must be indexed [required]
  --neutral_bin TEXT     Neutral bin data from discoal simulations  [required]
  --contig_name TEXT           Chromosome name  [required]
  --contig_len TEXT      Chromosome length for sliding  [required]
  --window_size INTEGER  Window size  [required]
  --step INTEGER         Sliding step  [required]
  --help                 Show this message and exit.

Training/prediction

Train Flexsweep CNN with the normalized feature vectors to classify neutral and sweep regions.

--mode train will output a CNN model for later classification in the selected output_folder. 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:
  --train_data TEXT       Path to the training data  [required]
  --output_folder TEXT    Output folder for the CNN model and logs  [required]
  --mode [train|predict]  Mode: 'train' or 'predict'  [required]
  --help                  Show this message and exit.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

flexsweep-0.1.4.tar.gz (91.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

flexsweep-0.1.4-py3-none-any.whl (91.7 kB view details)

Uploaded Python 3

File details

Details for the file flexsweep-0.1.4.tar.gz.

File metadata

  • Download URL: flexsweep-0.1.4.tar.gz
  • Upload date:
  • Size: 91.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.10.14 Linux/6.9.3-76060903-generic

File hashes

Hashes for flexsweep-0.1.4.tar.gz
Algorithm Hash digest
SHA256 0b4898e6a389dacf2f405ffb65255ba1679307d956e4935ddb1fb996e5339866
MD5 296be0490af95dba5b6995abea1b0105
BLAKE2b-256 1459dca5644b12b672e6d441b8b3fe12af3610bde2cf810b52ff31035bd2e20f

See more details on using hashes here.

File details

Details for the file flexsweep-0.1.4-py3-none-any.whl.

File metadata

  • Download URL: flexsweep-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 91.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.10.14 Linux/6.9.3-76060903-generic

File hashes

Hashes for flexsweep-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 e82650f8c1587ff3d875d74a728a6dea30176ac2387d257a5eb7490dfa0aa259
MD5 fed2834050333de757c0a89e0d7617b0
BLAKE2b-256 a573b4e09b001456cc9dc1a49f123d76078771c270cd79837bad90b73cacd6f8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page