Skip to content
/ needle Public

A fast and space-efficient pre-filter for estimating the quantification of very large collections of nucleotide sequences

License

Notifications You must be signed in to change notification settings

seqan/needle

Repository files navigation

Needle build status codecov install with bioconda

A fast and space-efficient pre-filter for estimating the quantification of very large collections of nucleotide sequences

Needle is a tool for semi-quantitative analysis of very large collections of nucleotide sequences.

Needle stores its data in multiple Interleaved Bloom Filter (IBF), a fast and space efficient probabilistic data structure and uses a windowing scheme (also called minimisers) to reduce the amount of data to store. How many Interleaved Bloom Filter are used is defined by the user.

Each IBF has a so-called expression threshold and stores minimisers with an occurrence greater than or equal to its own expression threshold and smaller than the next biggest expression threshold (if there is no bigger expression threshold, all greater than or equal to the threshold are stored). These expression thresholds are then used during the query (called estimate) to approximate the expression values of given transcripts.

Citation

In your academic works (also comparisons and pipelines) please cite:

  • Needle: a fast and space-efficient prefilter for estimating the quantification of very large collections of expression experiments; Mitra Darvish, Enrico Seiler, Svenja Mehringer, René Rahn, and Knut Reinert; Bioinformatics, Volume 38, Issue 17, 1 September 2022, Pages 4100–4108. doi: https://doi.org/10.1093/bioinformatics/btac492

Download and Installation

From Source

Prerequisites:

  • CMake >= 3.25
  • GCC >= 12
  • LLVM Clang >= 17
  • Intel oneAPI DPC++/C++ Compiler >= 2024.2 (older versions may work, but are not tested)
  • git

Refer to the Seqan3 Setup Tutorial for more in depth information.

Needle can be built by following these commands:

git clone https://github.com/seqan/needle.git
mkdir build-needle && cd build-needle
cmake ../needle -DCMAKE_BUILD_TYPE=Release
make

Run tests to check if Needle is working as intended. All tests should pass.

make check

Install with bioconda (Linux)

conda install -c bioconda -c conda-forge needle

Usage

Build a Needle index

To build a Needle index, several sequence files have to be given. All sequence file formats supported by SeqAn3 are accepted as an input (fasta, fastq, embl,... and their compressed forms).

The flag --paired in the example below indicates that the given sequence files are paired-end experiments. Furthermore, the false positive rate has to be specified with the parameter f.

Use -h/--help for more information and to see further parameters. The flag -c can be used to build a compressed Needle index.

The following example creates a compressed Needle index for two paired-end experiments for the expression thresholds 4 and 32.

./bin/needle ibf ../needle/test/data/exp_*.fasta --paired -e 16 -e 32 -f 0.3 -c -o example

Even though this works, it is recommended to calculate the minimisers beforehand by using the option minimisers. It calculates the minimisers of given experiments and stores their hash values and their occurrences in a binary file named ".minimiser".

The following command calculates the minimisers in the two experiments.

./bin/needle minimiser ../needle/test/data/exp_*.fasta --paired

A minimiser file is a binary file containing the following data:

  • number of minimisers (uint64_t)
  • kmer-size (uint8_t)
  • window-size (uint32_t)
  • seed (uint64_t)
  • flag which is true, if shape is ungapped (bool)
  • shape (uint64_t), if flag is false
  • all minimiser hashes (uint64_t) with their occurrences (uint16_t)

Based on the minimiser files, the Needle index can be computed by using the following command:

./bin/needle ibfmin exp*.minimiser -e 16 -e 32  -f 0.3 -c -o example

Estimate

To estimate the expression value of one transcript, a sequence file has to be given

Use the parameter "-i" to define where the Needle index can be found (should be equal with "-o" in the previous commands).

Use -h/--help for more information and to see further parameters.

The following example searches for one gene, which is expressed in the first experiment with expression 6 and in the second with expression 37. Therefore, it should be found only in the second experiment but not the first when using expression levels of 16 and 32.

./bin/needle estimate ../needle/test/data/gene.fasta -i example

The created file "expressions.out" (if you prefer a different name, use "-o") should contain the following:

GeneA   0      32

Insert into an existing Needle index

It is possible to insert new sequence files into an uncompressed Needle index.

Similar to the build step, this can be done by either using the sequence files as input directly or the minimiser files outputted by needle minimiser.

Most options are the same as the ones from the build step, however as the Needle index already exists, neither the false positive rate nor the number of hash functions can be changed.

It is necessary to specify i to the directory, where the existing Needle index can be found.

The following example inserts into the Needle index build above for two paired-end experiments.

# Create Index
./bin/needle ibf ../needle/test/data/exp_0*.fasta --paired -e 16 -e 32 -f 0.3 -c -o example
# Insert into created index
./bin/needle insert ../needle/test/data/exp_1*.fasta --paired -i example

Based on minimiser files, an insertion to the Needle index can be achieved by using the following command:

# Create Index
./bin/needle ibf ../needle/test/data/exp_0*.fasta --paired -e 16 -e 32 -f 0.3 -c -o example
# Insert into created index
./bin/needle insertmin exp*.minimiser -i example

The insert methods based on minimiser or on sequence files is independent of the way the index was created.

Delete experiments from an existing Needle index

It is possible to delete sequence files from an uncompressed Needle index by specifying the position of the experiment, which should be deleted.

These deleted experiments won't change the size of the index, as the space is kept for later insertions.

# Create Index
./bin/needle ibf ../needle/test/data/exp_*.fasta --paired -e 16 -e 32 -f 0.3 -c -o example
# Delete first experiment exp_0 (with position 0) from index
./bin/needle delete  -i example 0

Note

This app was created with the SeqAn app-template.