A collection of tools for analyzing HYPe reads
Project description
HYPeTools
This is a collection of tools for analyzing HYPe sequences.
Included tools:
- Detection of HVDs and conserved regions
- Generation of synthetic HYPe HVDs
- Parsing of HVDs to motifs
- Report generation for parsed reads
- Filtering of parsed reads
- Compaction of parsed reads
Included data:
- G. pallida HYP1 HVD markers
- G. pallida HYP1 Motifs
- G. pallida HYP1 Germline Sequences
Tools
HVD detection
This tool splits HYPe reads into HVDs (Hypervariable Domains) and conserved domains from FASTA files by identifying the positions of the specified start and end markers. It can process either a single FASTA file or a directory of FASTA files. Per default, the tool will use the HVD markers from G. pallida HYP1.
hypetools extract-hvds "path/to/folder/or/fasta/file.fasta" --hvd-markers "path/to/hvd/markers.fasta" --start-index 2 --end-index 5
Synthetic data generation
This tool can be used to generate synthetic HYPe sequences. You can use it to create a synthetic data set to mimick real observed reads. The synthetic data set contains reads from different categories, the user can specify the number of sequences to generate for each category.
- real observed reads - these should be sampled from real data. Per default, the tool will use the real observed HYP1 reads from G. pallida.
- hybrid reads - created by combining two real observed HYP1 reads
- random motif-based reads - created by combining a random number of motifs. The motifs can be provided by the user. Per default, the tool will use the motifs from G. pallida. HYP1. Motifs should be provided in fasta format.
- block-based reads - created by combining a random number of motifs, but following the block arrangement of real observed HYP1 reads. To use this, the user needs to provide a file containing the motifs in a fasta format. The fasta headers should contain the position of the motif in the HYP block.
(Examples for the files the user can provide can be found in the HYPeTools/data folder.)
The reads are created and then mutated, which means indels and SNPs are introduced. The mutation rate is on a per base pair basis. The rate is sampled from a normal distribution to resemble the mutation rate of real observed HYP1 reads.
The synthetic data set also contains:
- severely mutated sequences - sequences with a higher mutation rate
- completely random sequences - created by randomly combining bases These are created as "negative controls", reads that can not be ambigously parsed.
The length of the sequences are sampled from a normal distribution to resemble the length of real observed HYP1 reads. For the block-based and random motif-based sequences, this length is obtained by using the length of unique real obsereved HYP reads
The user can provide files containing:
- real observed HYP1 reads
- motifs
- short sections of conserved regions, these will be flanking the HVDs
Additionaly, a file will be created containing information about the synthetic data set - what category the reads belong to, and the motifs used to create the reads, as well as the number of mutations in the reads.
The user can specify the number of reads to generate for each category.
hype-tools synth --n-real 100 --n-hybrid 200 --n-severe 100 --n-random-motif 10 --n-block 100 --n-full-random 100 --real-input real.fasta --motifs motifs.json --output output
of or specify the total number of reads to generate and the input file.
hype-tools synth --n 600 --real-input real.fasta --motifs motifs.json --output output
HYPe Parsing
This tool processes FASTA files by first detecting HVDs and then finding the motifs in the HVDs. The selection of possible motifs and HVD start and end markers can be provided by the user. This tool will output a table for each read containing the most likely sequence of motifs on a dna and protein level, their positions in the read and the quality of the parsing. If two or more motifs fit equally well, the tool will output all of them for one position.
Quality measures:
- Excluded bases: Percentage of the read that is covered by the motifs
- Per Motif Alignment Score: Normalized semiglobal alignment score of the motif in this position, 1 is a perfect match
- Per Motif Quality Score: Alignment score of the best matching motif in this position, divided by the alignment score of the second best matching motif in this position. The quality score is between 1 and 2, 1 means no certainty, both the best and the second best matching motifs align equally well, 2 is high certainty.
- Per Read Alignment Score: Average alignment score of the motifs in the read
hypetools replace-parser /path/to/folder/or/fasta/file.fasta --hvds-file /path/to/hvd/markers.fasta --motifs-file /path/to/motifs.json --start-index 3 --end-index 6
The input can be a single fasta file or a directory containing multiple fasta files.
Report Generation
With this tool, the user will be able to generate a report about about a parser output. The report will contain information about the HVDs, the motifs, and the quality of the parsing.
hypetools generate-report path/to/your_replace_parse_results.txt
Compacted Parsed Reads
With this tool, the user is be able to generate a compacted version of the parsed reads file generated by the replace parser. This compacted version only contains the sequence header and the motifs, no quality information.
hypetools compact-output path/to/your_replace_parse_results.txt
hypetools compact-output path/to/your_replace_parse_results.txt --no-protein
hypetools compact-output path/to/your_replace_parse_results.txt --no-dna
Filter Parsed Reads
With this tool, the user is able to filter the parsed reads based on the quality of the parsing. The user can filter based on the minimum alignment score, the excluded percentage, the quality score and the minimum average score.
hypetools filter-parsed /path/to/your_replace_parse_results.txt --min-align 0.8 --max-excl-pct 10.0 --min-qual 1.01 --min-avg-align 0.8
The user can filter for the following parameters:
- Minimum alignment score (0-1) required for individual motifs
- Minimum average alignment score (0-1) across all motifs in a read
- Maximum percentage (0-100) of bases that can be excluded from motif matches
- Minimum quality score (1-2) required for motif assignments
Even if no parameters are provided, the tool will always filter out empty items. E.g. reads that do not have any motifs or reads where no HVD was found.
Some suggested values:
Perfectionist:
- Maximum excluded percentage: 0.0
- Minimum quality score: 1.1
- Minimum average alignment score: 1.0
- Minimum alignment score: 1.0
High-quality:
- Maximum excluded percentage: 4
- Minimum quality score: 1.1
- Minimum average alignment score: 0.8
Medium-quality:
- Maximum excluded percentage: 6
- Minimum quality score: 1.01
- Minimum average alignment score: 0.95
Setting the minimum quality score to 1.01 will remove all reads with ambiguous motifs.
Data
This package also includes data for G. pallida HYP1, which is used as default input for the tools. The user can specify their own data to use, which should be provided in the same format as the default data. Here is an overview of the formats of the data included in the package. You can find the data here.
HVD markers
This is a section of dna from the conserved domain right before and after the HVD.
>start
GAAAGTGGTAAAAGACCCGGGAGC
>end
CATAAACACGGAGGTTATGACGAG
Motifs
For most of the tools, the user can provide motifs in a json file. The json file should contain a dictionary with the motif as the key and the corresponding protein sequence as the value.
{
"TATGAGCGCGGAGGCGGA": "YERGGG",
"TATGAGCGCGGAGGCGGG": "YERGGG",
"TATGAACGCGGAGGCGGA": "YERGGG",
"AGTAACCGCGGAGGCGGA": "SNRGGG",
"AGTAACCGCGGGGGCGGA": "SNRGGG",
"AGTAACCGCGGAGGCGGG": "SNRGGG",
"AGTAACCGCGGGGGCGGG": "SNRGGG",
"AGTGACCGCGGAGAC": "SDRGD",
"AGTGACCGCGGAGAT": "SDRGD",
...
}
For the syntetic data generation tool, the motifs should be provided in a fasta file. If the user wants to generate sequences in a block format, the motifs should be provided in a fasta file where the headers contain the position of the motif in the HYP block.
>motif1_pos1
TATGAGCGCGGAGGCGGA
>motif2_pos1
AGTGACCGCGGAGAC
>motif3_pos2
CGTGACAATAAGCGCGGA
>motif4_pos2
CGTGACGATCAGCGCGGA
>motif5_pos3
CGTGACCGCGGAGAC
>motif6_pos3
CGTGACGATCAGCGCGGA
...
Germline Sequences
These are the sequences that have been observed very frequently as reads and therefore assumed to be germline alleles. They can be used to create synthetic data. They should be provided in a fasta file with spaces separating the motifs.
>GPallida_HYP1_1
TATGAGCGCGGAGGCGGA AGTGACCGCGGAGGCGGG CGTGACCGCGGAGAC ...
>GPallida_HYP1_2
TATGAGCGCGGAGGCGGA AGTGACCGCGGAGGCGGA CGTGACAATAAGCGCGGA ...
>GPallida_HYP1_3
...
Future Tools
De-Novo Motif Detection
With this tool, the user will be able to scan a fasta file containing HYPe reads for new, unknown motifs.
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
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 hype_tools-0.1.2.tar.gz.
File metadata
- Download URL: hype_tools-0.1.2.tar.gz
- Upload date:
- Size: 25.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64238b83014e67d8f38ee71838ebbc36ea58b3fe01c1eafea92a7ff7b51fc837
|
|
| MD5 |
77a8a2ad2e1daa94e9f2e53545dd7573
|
|
| BLAKE2b-256 |
f97bd8e02d19176c4b9ca14f284f784eb4c22c6a7a121b27e496998269474959
|
File details
Details for the file hype_tools-0.1.2-py3-none-any.whl.
File metadata
- Download URL: hype_tools-0.1.2-py3-none-any.whl
- Upload date:
- Size: 30.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e02f9f732cf1f4c760707dfa96ea428684229047d1e9da78593417307dc1fd9c
|
|
| MD5 |
d24753d9fe8948216c867ea44f0f7370
|
|
| BLAKE2b-256 |
5ab11d82bf1b59f6754071fe04eb22473215bbb63fbcd000e3128439ccf8ea3e
|