Client-server to handle Reindeer in query mode.
Project description
RDEER-SERVICE
rdeer-service is a tool to facilitate the use of Reindeer as a socket mode. It allows multiple Reindeer indexes to be loaded into memory, spread over several servers, enabling queries to be made quickly and easily.
It consists of a server part: rdeer-server, one instance of which will be started per index server, and a client part: rdeer, which allows index manipulation (stopping, starting, etc.) and queries.
It is a companion to Transipedia, a web application for querying Reindeer but it may be useful to use it independently.
Prerequisite
- Reindeer must be installed on indexes servers and the reindeer_socket binary in your $PATH
- You need some Reindeer indexes (Stored on SSD disks to better performances, otherwise build indexes with the Reindeer
--mem-query
option).
Installation
Recommanded (pip)
python3 -m pip install rdeer-service
Other (git)
git clone https://github.com/Bio2M/rdeer-service.git
How to use?
Start the server
rdeer-server requires Reindeer to be installed on the same physical machine. There can be several instances of rdeer-server running on the same server, each instance listening on a different TCP port (-p
option). rdeer-client can query remote servers, so you can have multiple servers hosting rdeer-server/Reindeer and query them all from the same machine.
rdeer-server /path/to/indexes
- rdeer-server listen on port 12800, you can change this with
--port
option. - The server will only be able to handle indexes in the specified directory. If your indexes are spread over several directories, you may create symlinks in
/path/to/indexes
. - You can add, remove or change the name of the indexes, rdeer-server takes the changes on the fly.
- It is recommended to start rdeer-server as a daemon, using systemd, supervisord or similar.
Use the client
The client could requests remote rdeer-server servers. You can enterely manage yours distributed Reindeer indexes with subcommand:
rdeer list -a
to show all indexes with their statusrdeer start <index-name>
to start a index (the index name is the directory hosting the index files)rdeer stop <index-name>
to stop a indexrdeer check <index-name>
to verify if index respondingrdeer status <index-name>
to get the index status (available, loading, running, error)rdeer query <index-name> -q <query.fa>
to request an index
show running indexes:
rdeer-client list
Show all indexes handled by rdeer-server
rdeer-client list -a
list all accessible indexes by rdeer-server, with status. Status are :
available
the index is not runningloading
the index is in a transitional mode until the running moderunning
the index is started, and can be resquested.error
a error occured on the index.
Start an index:
rdeer-client start my-index
Will starts the my-index Reindeer index. When status is running
, the index is ready to respond to requests.
Query an index
rdeer-client query my-index -q fasta-query
Requests the specified index, the query file is required and must be in a fasta format.
Options of query subcommand (rdeer-client query --help
):
-q/--query
to send a query file at the fasta format (required)-f/--format {raw,sum,average,mean,normalize}
whereraw
to get resultssum
to get sum of kmer countsmean
,average
to get sum of kmer counts / number of kmersnormalize
to get normalized counts as billion of kmers
-s/--server
to request rdeer-server on remote host-p/--port
to request rdeer-server on a specified port (default: 12800)-o/--outfile
output is stdout by default, you can specified a file
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 rdeer-service-2.0.4.tar.gz
.
File metadata
- Download URL: rdeer-service-2.0.4.tar.gz
- Upload date:
- Size: 25.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b2fa56b28f8d063951c903383fd7bcaf57fc1f59a77ccbdb90081141f5b42696 |
|
MD5 | 08b6bc147780e584ed4bea0cc727f376 |
|
BLAKE2b-256 | 07bf926c5f3f0f536758dfbfb8228c3a2dfe7a60d61c3b377b68617b632f2c39 |
Provenance
File details
Details for the file rdeer_service-2.0.4-py3-none-any.whl
.
File metadata
- Download URL: rdeer_service-2.0.4-py3-none-any.whl
- Upload date:
- Size: 25.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5a0d7a25c81948f41447fa4673650d2c21137c457768a23ee9550e35d2d25d21 |
|
MD5 | d1c25588926fdc8c5b179629ee7f2f9e |
|
BLAKE2b-256 | 31509dbb42951b7632a4a8007cb40f84be7ebc505cee020130c514cee949d1f5 |