Skip to main content

An HPV integration sites detection tool for targeted capture sequencing data

Project description

Documentation Status License PyPI version

Host Downloads
PyPI Downloads

SearcHPV

An HPV integration point detection tool for targeted capture sequencing data

Introdution

  • SearcHPV detects HPV fusion sites on both human genome and HPV genome
  • SearcHPV is able to provide locally assembled contigs for each integration events. It will report at least one and at most two contigs for each integration sites. The two contigs will provide information captured for left and right sides of the event.

Getting started

  1. Required resources
  • Unix like environment
  1. Download and install Firstly, download and install the required resources.

    1. Download Anaconda >=4.11.0: https://docs.conda.io/projects/conda/en/latest/user-guide/install/linux.html#install-linux-silent

    2. Download the "environment.yaml" file under this repository

    3. Creat conda environment for SearcHPV:

      conda env create -f [your_path]/environment.yaml
      
      

      This command will automatically set up all the third-party tools and packages required for SearcHPV and install latest version of SearcHPV. The name of the environment is "searcHPV".

      You can check the packages and tools in this environment by:

      conda list -n searcHPV
      
      

      You can update the environment by:

      conda env update -f [your_path]/environment.yaml
      
      
  2. Usage

SearcHPV have four main steps. You could either run it start-to-finish or run it step-by-step.

  • Before running SearcHPV, active the conda environment:
conda activate searcHPV

If you are running commands in a bash script, start with:

#!/bin/bash
source ~/anaconda3/etc/profile.d/conda.sh;
conda activate searcHPV; 
#[searcHPV commands...]

Note: Please check your path of "conda.sh" if you did not install Anaconda in the home directory.

  • Usage of searcHPV:
searcHPV <options> ...
  • Standard options:
 -fastq1 <str>  sequencing data: fastq/fq.gz file
 -fastq2 <str>  sequencing data: fastq/fq.gz file
 -humRef <str>  human reference genome: fasta file
 -virRef <str>  HPV reference genome: fasta file
  • Optional options:
-h, --help      show this help message and exit
-window <int>   the length of region searching for informative reads, default=300
-output <str>   output directory, default "./"
-alignment      run the alignment step, step1
-genomeFusion   call the genome fusion points, step2
-assemble local assemble for each integration event, step3
-hpvFusion call the HPV fusion points, step4
-clusterWindow <int> the length of window of clustering integration sites,default=100
-gz             if fastq files are in gz format
-poly(dn) N     poly(n), n*d(A/T/C/G), will report low confidence if contig contains poly(n), default=20
-index          index the original human and virus reference files, default=False

Note: If you've already indexed the virus and human reference files for BWA, Samtools, Picard, you do not need to add the "-index" option, especailly when you are running for a batch of samples that share the same virus and human reference files and you do not want to spend time on indexing references every time running a sample. The commands for indexing the virus and human reference files:

#activate SearcHPV conda environment first to make sure using the correct versions of tools
ref = '[path_of_your_reference_file]'
bwa index {ref}
samtools faidx {ref}
picard CreateSequenceDictionary R={ref} O={ref.replace('.fa','.dict')
  1. Examples:

    1. Run it start-to-finish and submit a SBATCH job:

      #!/bin/bash
      #SBATCH --job-name=searcHPV
      #SBATCH --mail-user=wenjingu@umich.edu
      #SBATCH --mail-type=BEGIN,END
      #SBATCH --cpus-per-task=1
      #SBATCH --nodes=1
      #SBATCH --ntasks-per-node=8
      #SBATCH --mem=40gb
      #SBATCH --time=100:00:00
      #SBATCH --account=XXXXX
      #SBATCH --partition=standard
      #SBATCH --output=searcHPV.log
      #SBATCH --error=searcHPV.err
      source ~/anaconda3/etc/profile.d/conda.sh;
      conda activate searcHPV;      
      searcHPV -fastq1 Sample_81279.R1.fastq.gz -fastq2 Sample_81279.R2.fastq.gz -humRef hs37d5.fa -virRef HPV.fa -output /home/scratch/HPV_fusion/Sample_81279 -gz -index;
      
    2. Run it step-by-step:

      searchHPV -alignment -fastq1 Sample_81279.R1.fastq.gz -fastq2 Sample_81279.R2.fastq.gz -humRef hs37d5.fa -virRef HPV.fa -output /home/scratch/HPV_fusion/Sample_81279 -gz -index
      searchHPV -genomeFusion -fastq1 Sample_81279.R1.fastq.gz -fastq2 Sample_81279.R2.fastq.gz -humRef hs37d5.fa -virRef HPV.fa -output /home/scratch/HPV_fusion/Sample_81279 -gz
      searchHPV -assemble -fastq1 Sample_81279.R1.fastq.gz -fastq2 Sample_81279.R2.fastq.gz -humRef hs37d5.fa -virRef HPV.fa -output /home/scratch/HPV_fusion/Sample_81279 -gz
      searchHPV -hpvFusion -fastq1 Sample_81279.R1.fastq.gz -fastq2 Sample_81279.R2.fastq.gz -humRef hs37d5.fa -virRef HPV.fa -output /home/scratch/HPV_fusion/Sample_81279 -gz
      
      

      Note: if run it step-by-step, please make sure the output directories for all steps are the same.

Output

  1. Alignment: the marked dupliaction alignment bam file and customized reference genome.\
  2. Genome Fusion Point Calling: orignal callset, filtered callset, filtered clustered callset.\
  3. Assemble: supportive reads, contigs for each integration events (unfiltered).\
  4. HPV fusion Point Calling: alignment bam file for contigs againt human and HPV genome.\ Final outputs are under the folder "call_fusion_virus": summary of all the integration events : "HPVfusionPointContig.txt" contig sequences for all the integration events: "ContigsSequence.fa"

Citation

SearcHPV: a novel approach to identify and assemble human papillomavirus-host genomic integration events in cancer --- Accepted by Cancer

Contact

wenjingu@umich.edu

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

searcHPV-1.0.10.tar.gz (24.3 kB view details)

Uploaded Source

Built Distributions

searcHPV-1.0.10-py3.8.egg (43.4 kB view details)

Uploaded Source

searcHPV-1.0.10-py3.7.egg (43.5 kB view details)

Uploaded Source

searcHPV-1.0.10-py3-none-any.whl (24.0 kB view details)

Uploaded Python 3

File details

Details for the file searcHPV-1.0.10.tar.gz.

File metadata

  • Download URL: searcHPV-1.0.10.tar.gz
  • Upload date:
  • Size: 24.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/3.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for searcHPV-1.0.10.tar.gz
Algorithm Hash digest
SHA256 01340fb45a037f95ea2df4429915a6c2477ec90fc215cd05a355c887b5395e6e
MD5 4b72ed977f6666cd96e2e403c2dbb654
BLAKE2b-256 4fb30085c795b31c9115cb6c78969ff08e6a0c125ed0ce8e46614c51a8ea9153

See more details on using hashes here.

Provenance

File details

Details for the file searcHPV-1.0.10-py3.8.egg.

File metadata

  • Download URL: searcHPV-1.0.10-py3.8.egg
  • Upload date:
  • Size: 43.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/3.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for searcHPV-1.0.10-py3.8.egg
Algorithm Hash digest
SHA256 a9468b73e4e4618bc9b190fbed62ff3f9a971d48a63156659052a24105cad1d8
MD5 480e6b99b73763b0ff2ac66d31c976b8
BLAKE2b-256 43ae24de5fa44b907f273d5652db27933f35d1b5d56fd418c9a6e94b6f165b72

See more details on using hashes here.

Provenance

File details

Details for the file searcHPV-1.0.10-py3.7.egg.

File metadata

  • Download URL: searcHPV-1.0.10-py3.7.egg
  • Upload date:
  • Size: 43.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/3.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for searcHPV-1.0.10-py3.7.egg
Algorithm Hash digest
SHA256 0ec9ee925e06983bdbfd58226043832b28ec657cbc60ee37d1f6f82abb9a325d
MD5 4db827ac16f7b45a4d94b585e2d96cf1
BLAKE2b-256 963fc1d92dcf2e732f0bb533904c1004e88116ec2e336f342c77410aa1f8a36a

See more details on using hashes here.

Provenance

File details

Details for the file searcHPV-1.0.10-py3-none-any.whl.

File metadata

  • Download URL: searcHPV-1.0.10-py3-none-any.whl
  • Upload date:
  • Size: 24.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/3.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for searcHPV-1.0.10-py3-none-any.whl
Algorithm Hash digest
SHA256 603d86cafc79b2e8357f8512c1eac0c503cb5eff8d7d7d0833ae9a4eb1b9ce57
MD5 d15d411af870b2a4131d0b9aa44dce6c
BLAKE2b-256 b16218664386cf9732d671d8d7e1d9f7c951b076de7549ec0112adb3d394502f

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page