Python tools for programmatically annotating VCFs with the Seshat TP53 database.
Project description
tp53 & seshat python tools
Python tools for programmatically annotating VCFs with the Seshat TP53 database.
Installation
The Python package can be installed with pip:
pip install tp53
Upload a VCF to Seshat
Upload a VCF to the Seshat TP53 annotation server using a headless browser.
❯ python -m tp53.seshat.upload_vcf \
--input "sample.library.vcf" \
--email "example@gmail.com"
INFO:tp53.seshat.upload_vcf:Uploading 0 %...
INFO:tp53.seshat.upload_vcf:Uploading 53%...
INFO:tp53.seshat.upload_vcf:Uploading 53%...
INFO:tp53.seshat.upload_vcf:Uploading 60%...
INFO:tp53.seshat.upload_vcf:Uploading 60%...
INFO:tp53.seshat.upload_vcf:Uploading 66%...
INFO:tp53.seshat.upload_vcf:Uploading 66%...
INFO:tp53.seshat.upload_vcf:Uploading 80%...
INFO:tp53.seshat.upload_vcf:Uploading 80%...
INFO:tp53.seshat.upload_vcf:Upload complete!
This tool is used to programmatically configure and upload batch variants in VCF format to the Seshat annotation server. The tool works by building a headless Chrome browser instance and then interacting with the Seshat website directly through simulated key presses and mouse clicks.
VCF Input Requirements
Seshat will not let the user know why a VCF fails to annotate, but it has been observed that Seshat can fail to parse some of VarDictJava's structural variants (SVs) as valid variant records. One solution that has worked in the past is to remove SVs. The following command will exclude all variants with a non-empty SVTYPE INFO key:
❯ bcftools view sample.library.vcf \
--exclude 'SVTYPE!="."' \
> sample.library.noSV.vcf
Automation
There are no terms and conditions posted on the Seshat annotation server's website, and there is no server-side robots.txt rule set.
In lieu of usage terms, we strongly encourage all users of this script to respect the Seshat resource by adhering to the following best practice:
- Minimize Load: Limit the rate of requests to the server
- Minimize Connections: Limit the number of concurrent requests
Environment Setup
This script relies on Google Chrome:
❯ brew install --cask google-chrome
Distributions of MacOS may require you to authenticate the Chrome driver (link).
Download a Seshat Annotation from Gmail
Download Seshat VCF annotations by awaiting a server-generated email.
❯ python -m tp53.seshat.find_in_gmail \
--input "sample.library.vcf" \
--output "sample.library" \
--credentials "~/.secrets/credentials.json"
INFO:tp53.seshat.find_in_gmail:Successfully logged into the Gmail service.
INFO:tp53.seshat.find_in_gmail:Querying for a VCF named: sample.library.vcf
INFO:tp53.seshat.find_in_gmail:Searching Gmail messages with: sample.library.vcf from:support@genevia.fi newer_than:5h subject:"Results of batch analysis"
INFO:tp53.seshat.find_in_gmail:Message found with the following metadata: {'id': '193c310d2714b389', 'threadId': '193c30b7244e2662'}
INFO:tp53.seshat.find_in_gmail:Message contents are as follows:
INFO:tp53.seshat.find_in_gmail: Results of batch analysis
INFO:tp53.seshat.find_in_gmail: Analyzed batch file:
INFO:tp53.seshat.find_in_gmail: sample.library.vcf
INFO:tp53.seshat.find_in_gmail: Time taken to run the analysis:
INFO:tp53.seshat.find_in_gmail: 0 minutes 10 seconds
INFO:tp53.seshat.find_in_gmail: Summary:
INFO:tp53.seshat.find_in_gmail: The input file contained
INFO:tp53.seshat.find_in_gmail: 23 mutations out of which
INFO:tp53.seshat.find_in_gmail: 23 were TP53 mutations.
INFO:tp53.seshat.find_in_gmail:Writing attachment to ZIP archive: sample.library.vcf.seshat.zip
INFO:tp53.seshat.find_in_gmail:Extracting ZIP archive: sample.library.vcf.seshat.zip
INFO:tp53.seshat.find_in_gmail:Output file renamed to: sample.library.seshat.short-20241214_034753_129732.tsv
INFO:tp53.seshat.find_in_gmail:Output file renamed to: sample.library.seshat.long-20241214_034753_217420.tsv
This tool is used to programmatically wait for, and retrieve, a batch results email from the Seshat TP53 annotation server. The tool works by searching a user-controlled Gmail inbox for a recent Seshat email that contains the result annotations for a given VCF input file, by name. It is critically important to be aware that there is no way to prove which annotation files, as they arrive via email, are to be linked with which VCF file on disk.
This tool assists in the correct pairing of VCF input files, and subsequent annotation files, by letting you specify how many hours back in time you will let the Gmail query search (--newer-than).
Limiting the window of time in which an email should have arrived minimizes the chance of discovering stale annotation files from an old Seshat execution in the cases where VCF filenames may be non-unique.
If the batch results email from the Seshat annotation server has not yet arrived, this tool will wait a set number of seconds (--wait-for) before exiting with exception.
It normally takes less than 1 minute for the Seshat server to annotate an average TP53-only VCF.
Search Criteria
The following rules are used to find annotation files:
- The email contains the filename of the input VCF
- The email subject line must contain "Results of batch analysis"
- The email is at least
--newer-thanhours old - The email is from the address support@genevia.fi
Outputs:
<output>.seshat.long-\\d{8}_\\d{6}_\\d{6}.tsv: The long format Seshat annotations for the input VCF<output>.seshat.short-\\d{8}_\\d{6}_\\d{6}.tsv: The short format Seshat annotations for the input VCF<output>.seshat.zip: The original ZIP archive from Seshat
Gmail Authentication
You must create a Google developer's OAuth file. First-time 2FA may be required depending on the configuration of your Gmail service. If 2FA is required, then this script will block until you acknowledge your 2FA prompt. A 2FA prompt is often delivered through an auto-opening web browser.
To create a Google developer's OAuth file, navigate to the following URL and follow the instructions.
Ensure your OAuth file is configured as a "Desktop app" and then download the credentials as JSON.
Save your credentials file somewhere safe, ideally in a secure user folder with restricted permissions (chmod 700).
Set your OAuth file permissions to also restrict unwarranted access (chmod 600).
This script will store a cached token after first-time authentication is successful. This cached token can be found in the user's home directory within a hidden directory. Token caching greatly speeds up continued executions of this script. As of now, the token is cached at the following location:
"~/.tp53/seshat/seshat-gmail-find-token.pickle"
If the cached token is missing, or becomes stale, then you will need to provide your OAuth credentials file.
A typical Google developer's OAuth file is of the format:
{
"installed": {
"auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
"client_id": "272111863110-csldkfjlsdkfjlksdjflksdincie.apps.googleusercontent.com",
"client_secret": "sdlfkjsdlkjfijciejijcei",
"project_id": "gmail-access-2398293892838",
"redirect_uris": [
"urn:ietf:wg:oauth:2.0:oob",
"http://localhost"
],
"token_uri": "https://oauth2.googleapis.com/token"
}
}
Server Failures
If Seshat fails to annotate the VCF file but still emails the user a response, then this tool will emit the email body to standard error and exit with a non-zero status.
Development and Testing
See the contributing guide for more information.
References
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
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 tp53-0.13.0.tar.gz.
File metadata
- Download URL: tp53-0.13.0.tar.gz
- Upload date:
- Size: 16.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d0a774773287d137a06b2afa5f5bf5e14dd03b4fe3b1774a6c67556db539326a
|
|
| MD5 |
b9dd1c5e7b2fe63330ba4b6f90763fef
|
|
| BLAKE2b-256 |
c587c0488f4f7d012b3d4a0420715ee788b6246dae2ef47f8c6b1b9375a60da1
|
Provenance
The following attestation bundles were made for tp53-0.13.0.tar.gz:
Publisher:
publish_tp53.yml on clintval/tp53
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tp53-0.13.0.tar.gz -
Subject digest:
d0a774773287d137a06b2afa5f5bf5e14dd03b4fe3b1774a6c67556db539326a - Sigstore transparency entry: 155492408
- Sigstore integration time:
-
Permalink:
clintval/tp53@0c632b15bbed4999399267265976d066529fb42c -
Branch / Tag:
refs/tags/0.13.0 - Owner: https://github.com/clintval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish_tp53.yml@0c632b15bbed4999399267265976d066529fb42c -
Trigger Event:
push
-
Statement type:
File details
Details for the file tp53-0.13.0-py3-none-any.whl.
File metadata
- Download URL: tp53-0.13.0-py3-none-any.whl
- Upload date:
- Size: 17.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a016808dbdefd79972920c6226f218ad3f9705f6985b9a9c23ab04cc28fbdb7
|
|
| MD5 |
16fa884425e02dcecfbc6634aca59cd6
|
|
| BLAKE2b-256 |
17500da9bef684ea397cc5a2db16e08a4bde04acd5882f9b269f0018089a6c31
|
Provenance
The following attestation bundles were made for tp53-0.13.0-py3-none-any.whl:
Publisher:
publish_tp53.yml on clintval/tp53
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tp53-0.13.0-py3-none-any.whl -
Subject digest:
7a016808dbdefd79972920c6226f218ad3f9705f6985b9a9c23ab04cc28fbdb7 - Sigstore transparency entry: 155492409
- Sigstore integration time:
-
Permalink:
clintval/tp53@0c632b15bbed4999399267265976d066529fb42c -
Branch / Tag:
refs/tags/0.13.0 - Owner: https://github.com/clintval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish_tp53.yml@0c632b15bbed4999399267265976d066529fb42c -
Trigger Event:
push
-
Statement type: