Skip to main content

Extracts mutational signatures from mutational catalogues

Project description

Docs License Build Status

SigProfilerExtractor

SigProfilerExtractor allows de novo extraction of mutational signatures from data generated in a matrix format. The tool identifies the number of operative mutational signatures, their activities in each sample, and the probability for each signature to cause a specific mutation type in a cancer sample. The tool makes use of SigProfilerMatrixGenerator and SigProfilerPlotting.

INSTALLATION

In the commandline, please type the following line:

$pip install sigproextractor

Install your desired reference genome from the command line/terminal as follows (available reference genomes are: GRCh37, GRCh38, mm9, and mm10):

$ python
>> from SigProfilerMatrixGenerator import install as genInstall
>> genInstall.install('GRCh37')

This will install the human 37 assembly as a reference genome. You may install as many genomes as you wish.

open a python interpreter and import the SigProfilerExtractor module. Please see the examples of the functions.

FUNCTIONS

importdata

Imports the path of example data.

importdata(datatype="matobj")

Example: 
-------
>>> from sigproextractor import sigpro as sig
>>> path_to_example_table = sig.importdata("table")
>>> data = path_to_example_table 
This "data" variable can be used as a parameter of the "project" argument of the sigProfilerExtractor function.

To get help on the parameters and outputs of the "importdata" function, please write down the following line:

>>> help(sig.importdata)

sigProfilerExtractor

Extracts mutational signatures from an array of samples.

sigProfilerExtractor(input_type, out_put, project, refgen="GRCh37", genome_build = "GRCh37", startProcess=1, endProcess=10, totalIterations=8, 
cpu=-1, hierarchy = False, mtype = ["default"],exome = False)


Parameters
----------

input_type: A string. Type of input. The type of input should be one of the following:
        - "vcf": used for vcf format inputs.
        - "table": used for table format inputs using a tab seperated file.


out_put: A string. The name of the output folder. The output folder will be generated in 
the current working directory. 

input_data: A string. Name of the input folder (in case of "vcf" type input) or the 
input file (in case of "table"  type input). The project file or folder should be inside the 
current working directory. For the "vcf" type input,the project has to be a folder which will 
contain the vcf files in vcf format or text formats. The "text"type projects have to be a file.   

refgen: A string, optional. The name of the reference genome. The default reference genome is "GRCh37". 
This parameter is applicable only if the input_type is "vcf".

genome_build: A string, optional. The build or version of the reference signatures for the refgen. 
The default genome build is GRCh37. If the input_type is "vcf", the genome_build automatically 
matches the input refgen value.        

startProcess: A positive integer, optional. The minimum number of signatures to be extracted. 
The default value is 1. 

endProcess: A positive integer, optional. The maximum number of signatures to be extracted. 
The default value is 10.

totalIterations: A positive integer, optional. The number of iteration to be performed to extract 
each number signature. The default value is 8. However, we STRONGLY RECOMMEND TO USE 1000 
iterations to get valid results. 

cpu: An integer, optional. The number of processors to be used to extract the signatures. 
The default value is -1 which will use all available processors. 

hierarchy: Boolean, optional. Defines if the signature will be extracted in a hierarchical fashion. 
The default value is "False".

par_h = Float, optional. Ranges from 0 t0 1. Default is 0.90. Active only if the "hierarchy" is True. 
Sets the cutoff to select the unexplained samples in a hierarchical layer based on the cosine similarity 
between the original and reconstructed samples.  

mtype: A list of strings, optional. The items in the list defines the mutational contexts to be considered 
to extract the signatures. The default value is ["96", "DINUC" , "ID"], where "96" is the SBS96 context, "DINUC"
is the DINULEOTIDE context and ID is INDEL context. Other options are: '6144', '384', '1536', '6', '24' .

exome: Boolean, optional. Defines if the exomes will be extracted. The default value is "False".

penalty: Float, optional. Takes any positive float. Default is 0.05. Defines the thresh-hold cutoff 
to asaign signatures to a sample.    

resample: Boolean, optional. Default is True. If True, add poisson noise to samples by resampling.  
    Examples
    --------

    >>> from sigproextractor import sigpro as sig

    # to get input from vcf files
    >>> path_to_example_folder_containing_vcf_files = sig.importdata("vcf")
    >>> data = path_to_example_folder_containing_vcf_files # you can put the path to your folder containing the vcf samples
    >>> sig.sigProfilerExtractor("vcf", "example_output", data, startProcess=1, endProcess=3)

    Wait untill the excecution is finished. The process may a couple of hours based on the size of the data.
    Check the current working directory for the "example_output" folder.

    # to get input from table format (mutation catalog matrix)
    >>> path_to_example_table = sig.importdata("table")
    >>> data = path_to_example_table # you can put the path to your tab delimited file containing the mutational catalog matrix/table
    >>> sig.sigProfilerExtractor("table", "example_output", data, genome_build="GRCh38", startProcess=1, endProcess=3)

    To get help on the parameters and outputs of the "sigProfilerExtractor" function, please write down the following line:

    >>> help(sig.sigProfilerExtractor)

GPU support

Sigprofilerextractor is GPU-enabled and can run on single or multi-GPU systems for significantly increased performance in most circumstances.

To use this feature set the GPU flag to True:

    sigProfilerExtractor(input_type, out_put, project, refgen="GRCh37", genome_build = "GRCh37", startProcess=1, endProcess=10, totalIterations=8, 
    cpu=-1, hierarchy = False, mtype = ["default"],exome = False, gpu=True)

If CUDA out of memory exceptions occur, it will be necessary to reduce the number of CPU processes used (the cpu parameter).

For more information, help and examples, please visit: https://osf.io/t6j7u/wiki/home/

COPYRIGHT

This software and its documentation are copyright 2018 as a part of the sigProfiler project. The SigProfilerExtractor framework is free software and is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

CONTACT INFORMATION

Please address any queries or bug reports to S M Ashiqul Islam (Mishu) at m0islam.ucsd.edu

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

sigproextractor-0.0.5.77.tar.gz (34.3 MB view details)

Uploaded Source

Built Distribution

sigproextractor-0.0.5.77-py3-none-any.whl (34.7 MB view details)

Uploaded Python 3

File details

Details for the file sigproextractor-0.0.5.77.tar.gz.

File metadata

  • Download URL: sigproextractor-0.0.5.77.tar.gz
  • Upload date:
  • Size: 34.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for sigproextractor-0.0.5.77.tar.gz
Algorithm Hash digest
SHA256 2528b664c458c75cf8ec6f69907ea91f08594ab22fdd53af989e36af05607947
MD5 e4c9ada90d0b451e655e3e3877b8f6a6
BLAKE2b-256 9eff8f97e33c98764d462f3df1198d565b28e7099edc93f60ddc9226a63d9f44

See more details on using hashes here.

File details

Details for the file sigproextractor-0.0.5.77-py3-none-any.whl.

File metadata

  • Download URL: sigproextractor-0.0.5.77-py3-none-any.whl
  • Upload date:
  • Size: 34.7 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for sigproextractor-0.0.5.77-py3-none-any.whl
Algorithm Hash digest
SHA256 57f6226d84f91982fce049f0a032f44840842d14aca1d17ca031555ffc2d652a
MD5 66b55abe9ed6ef7e7818911f55b6d060
BLAKE2b-256 5bc924e50087109b7148298e313db9cef34978a6308dc3f764fbae6569b53c51

See more details on using hashes here.

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