Description Usage Arguments Details Value Author(s) Examples
View source: R/InterProEntryTypes.R
Read InterProScan output in the gff format, select sequence features by type
1 | addInterProEntryTypes(InterProScan_result, entry.list_path)
|
InterProScan_result |
GRanges, the output of |
entry.list_path |
character, file name and directory where to store InterPro entry list |
filename.gz |
character, file name and directory to read InterProScan output in the gff format ("./dir/filename.gz") |
selected_ENTRY_TYPE |
character, select InterPro signature matches from |
For further details on the InterProScan output format please visit the link https://github.com/ebi-pf-team/interproscan/wiki/OutputFormats
readInterProGFF3
, addInterProEntryTypes
or SubsetByInterProEntryType
: GRanges-class object containing InterProScan output appended by InterPro Entry Types information, with names metadata and sequence length information imported correctly
getInterProEntryTypes
: data.table containing InterPro Entry List ftp://ftp.ebi.ac.uk/pub/databases/interpro/entry.list
getInterPro2memberDB
: data.table containing InterProID to member database ID mapping
Vitalii Kleshchevnikov
1 2 3 4 5 | # read InterProScan result, download and add InterPro Entry Types information, extract from relevant columns and add names metadata and sequence length information
InterProScan_result = readInterProGFF3("./processed_data_files/all_human_viral_protein_domains.gff3.gz")
InterProScan_result = addInterProEntryTypes(InterProScan_result, "./data_files/entry.list")
# create a subset that contains "Domain", "Active_site", "Binding_site", "Conserved_site", "PTM" signatures
InterProScan_domains = SubsetByInterProEntryType(InterProScan_result)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.