Reduce redundancy in dataset using greedy algorithms:
Project description
greedysub
Command line program for selecting representative, non-redundant subset of DNA or protein-sequences, based on list of pairwise sequence identities
Overview
The main purpose of the greedysub
program is to select a non-redundant subset of DNA- or protein-sequences, i.e., a subset where all pairwise sequence identities are below a given threshold. However, the program can be used to find representative subsets for any other type of items also. The program requires a list of pairwise similarities (or distances) as input, along with a cutoff specifying when two items are considered to be neighbors.
Reducing sequence redundancy is helpful, e.g., when using cross-validation for estimating the predictive performance of machine learning methods, such as neural networks, in order to avoid spuriously high performance estimates: if similar items (sequences) are present in both training and test sets, then the method will appear to be good at generalisation, when it may just have been overtrained to recognize items (sequences) similar to those in the training set.
The program implements two different greedy heuristics for solving the problem: "greedy-max" and "greedy-min". On average the "min" algorithm will be best (giving the largest subset). See section "Theory" for details on the algorithms, and for comments on the non-optimality of the heuristics for this problem.
Availability
The greedysub
source code is available on GitHub: https://github.com/agormp/greedysub. The executable can be installed from PyPI: https://pypi.org/project/greedysub/
Installation
python3 -m pip install greedysub
Upgrading to latest version:
python3 -m pip install --upgrade greedysub
Dependencies
The primary dependencies of greedysub
are:
- pandas
- dask[complete]: For optional parallelization when reading and parsing input file.
These packages are automatically included when using pip to install.
Usage
usage: greedysub [-h] [--algo ALGORITHM] [--val VALUETYPE] [-c CUTOFF] [-k KEEPFILE]
[--par]
INFILE OUTFILE
Selects subset of items, based on list of pairwise similarities (or distances), such
that no retained items are close neighbors
positional arguments:
INFILE input file containing similarity or distance for each pair of items:
name1 name2 value
OUTFILE output file contatining neighborless subset of items (one name per
line)
options:
-h, --help show this help message and exit
--algo ALGORITHM algorithm: min, max [default: min]
--val VALUETYPE specify whether values in INFILE are distances (--val dist) or
similarities (--val sim)
-c CUTOFF cutoff value for deciding which pairs are neighbors
-k KEEPFILE (optional) file with names of items that must be kept (one name per
line)
--par Use paralellization to speed up parsing of large input files.
Requires multiple cores
Input file
The program requires an INFILE, which should be a textfile where each line contains the names of two sequences (items) and their pairwise similarity (option --val sim
) or distance (option --val dist
):
yfg1 yfg2 0.98
yfg1 klp2 0.67
yfg1 mcf9 0.87
...
Note: The input file must contain one line for each possible pair of items.
Output file
The results are written to the OUTFILE, which will contain a list of names (one name per line) of sequences (items) that should be retained:
yfg1
klp2
...
Note: It is guaranteed that no two items in the resulting subset are neighbors. The program aims to find the maximally sized set of non-adjacent items (but see section Theory for why this is hard and not guaranteed).
Keepfile
Using the option -k <NAME OF KEEPFILE>
the user can specify a list of names for items that must be retained in the subset no matter what (even if some of them are neighbors). This KEEPFILE should be a text file listing one name to be retained per line
abc1
def3
...
Usage examples
Select items such that max pairwise similarity is 0.75, using "greedy-min" algorithm
greedysub --algo min --val sim -c 0.75 simfile.txt resultfile.txt
Select items such that minimum pairwise distance is 10, using "greedy-min" algorithm
greedysub --algo min --val dist -c 10 distfile.txt resultfile.txt
Select items with max pairwise similarity 3, while keeping items in keeplist.txt, using "greedy-max"
greedysub --algo max --val sim -c 3 -k keeplist.txt simfile.txt resultfile.txt
Summary info written to stdout
Basic information about the original and reduced data sets will be printed to stdout.
Example output
Names in reduced set written to outfile.txt
Number in original set: 1,500
Number in reduced set: 1,252
Node degree original set:
min: 1
max: 170
ave: 11.67
Node distances original set:
ave: 370.01
cutoff: 10.00
Here, the node degree
of an item is the number of neighbors it has (i.e., the number of other items that are closer to the item than the cutoff value).
Theory
Equivalence to "maximum independent set problem" and other problems
Finding the largest subset of non-neighboring sequences (items) from a list of pairwise similarities (or distances) is equivalent to the following problems:
- "Maximum independent set problem" from graph-theory: find the largest set of nodes on a graph, such that none of the nodes are adjacent.
- "Maximum clique problem": if a set of nodes constitute a maximum independent set, then the same nodes form a maximum clique on the complement graph.
- "Minimum vertex cover problem": a vertex cover is a set of nodes that includes at least one endpoint of all edges of the graph. A minimum vertex cover is the smallest possible such set. A minimum vertex cover is the complement of a maximum independent set.
Computational intractibility of problem
This problem is strongly NP-hard and it is also hard to approximate. There are therefore no efficient, exact algorithms, although there are exact algorithms with much better time complexity than the worst-case complexity of a naive, exhaustive search.
Implemented algorithms
Greedy-min algorithm
Given a graph G:
- While there are still edges in G:
- Select a node $\nu$ of minimum degree in G
- Remove $\nu$ and its neighbors
- Output the set of selected nodes
Performance ratio: On a graph with maximum node degree $\Delta$, it has been shown that the greedy-min algorithm yields solutions that are within a factor $3 / (\Delta + 2)$ of the optimal solution. For instance, for $\Delta=4$ the algorithm is guaranteed to be no worse than $3 / (4 + 2) = 0.5$ times the optimal solution (i.e., the found solution will be at least half the size of the optimal one).
Greedy-max algorithm
Given a graph G:
- While there are still edges in G:
- Select a node $\nu$ of maximum degree in G
- Remove $\nu$
- Output set of nodes left in G
Performance ratio: On a graph with maximum node degree $\Delta$, it has been shown that the greedy-max algorithm yields solutions that are within a factor $1 / (\Delta + 1)$ of the optimal solution. For instance, for $\Delta=4$ the algorithm is guaranteed to be no worse than $1 / (4 + 1) = 0.2$ times the optimal solution (i.e., the found solution will be at least 20% the size of the optimal one).
Note: the greedy-max algorithm is the same as algorithm 2 from the following paper (but has been described in the context of graph theory prior to this): "Selection of representative protein data sets", Protein Sci. 1992. 1(3):409-17.
Computational performance:
The program has been optimized to run reasonably fast with limited memory usage. For large input files it may be faster to use the option --par
which parallelizes reading and parsing of the input file (using dask).
For instance: 100 million lines of pairwise distance info (about 3.3 GB) was analyzed in 17 seconds on a 2021 Macbook Pro with 10 cores, when using parallelization (--par
). The same file analyzed in 29 seconds without parallelization.
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
File details
Details for the file greedysub-1.2.2.tar.gz
.
File metadata
- Download URL: greedysub-1.2.2.tar.gz
- Upload date:
- Size: 20.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cb6fdf221028ca881f8a450a6d8ada70d22e39eeabcf12708b848694db21c187 |
|
MD5 | 33d6fba0715be464b1aa6409954d8fd8 |
|
BLAKE2b-256 | 2c4c137ba699547983762a945eabd4877da8e491d53b32014fc58b6fd6ac4ec6 |
File details
Details for the file greedysub-1.2.2-py3-none-any.whl
.
File metadata
- Download URL: greedysub-1.2.2-py3-none-any.whl
- Upload date:
- Size: 20.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4c9f80b9e0a7b9617ba5534ff7b080ae71288fb89d01f025381ea17ed4619ada |
|
MD5 | 4c9d5fd7508b6d9c445496a2eb6a3f0c |
|
BLAKE2b-256 | 74cbdaa41aae78588ec14ab0ec62378eb13240da0c02844fac5439b9c457d868 |