Description Usage Arguments Details Value Author(s) References See Also Examples
View source: R/high_level_functions.R
This high-level function adds the results of the external sequence analysis supplied (if any), then proceeds to analyze alternative splicing. Then functional consequences of the isoform switches are identified and isoform switch analysis plots are created for the top n
isoform switches. Lastly a plot summarizing the functional consequences is created. This function is meant to be used after isoformSwitchAnalysisPart1 have been used.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | isoformSwitchAnalysisPart2(
switchAnalyzeRlist,
alpha = 0.05,
dIFcutoff = 0.1,
n = Inf,
codingCutoff = NULL,
removeNoncodinORFs,
pathToCPATresultFile = NULL,
pathToCPC2resultFile = NULL,
pathToPFAMresultFile = NULL,
pathToIUPred2AresultFile = NULL,
pathToNetSurfP2resultFile = NULL,
pathToSignalPresultFile = NULL,
consequencesToAnalyze = c(
'intron_retention',
'coding_potential',
'ORF_seq_similarity',
'NMD_status',
'domains_identified',
'IDR_identified',
'IDR_type',
'signal_peptide_identified'
),
pathToOutput = getwd(),
fileType = 'pdf',
asFractionTotal = FALSE,
outputPlots = TRUE,
quiet = FALSE
)
|
switchAnalyzeRlist |
The |
alpha |
The cutoff which the FDR correct p-values must be smaller than for calling significant switches. Default is 0.05. |
dIFcutoff |
The cutoff which the changes in (absolute) isoform usage must be larger than before an isoform is considered switching. This cutoff can remove cases where isoforms with (very) low dIF values are deemed significant and thereby included in the downstream analysis. This cutoff is analogous to having a cutoff on log2 fold change in a normal differential expression analysis of genes to ensure the genes have a certain effect size. Default is 0.1 (10%). |
n |
The number of top genes (after filtering and sorted according to |
codingCutoff |
Numeric indicating the cutoff used by CPAT/CPC2 for distinguishing between coding and non-coding transcripts.
|
removeNoncodinORFs |
A logic indicating whether to remove ORF information from the isoforms which the CPAT analysis classifies as non-coding. This can be particular useful if the isoform (and ORF) was predicted de-novo but is not recommended if ORFs was imported from a GTF file. This will affect all downstream analysis and plots as both analysis of domains and signal peptides requires that ORFs are annotated (e.g. analyzeSwitchConsequences will not consider the domains (potentially) found by Pfam if the ORF have been removed). |
pathToCPATresultFile |
Path to the CPAT result file. If the webserver is used please download the tab-delimited file from the bottom of the result page and give that as input, else simply supply the result file. See analyzeCPAT for details. |
pathToCPC2resultFile |
Path to the CPC2 result file. If the webserver is used please download the tab-delimited file from the bottom of the result page and give that as input, else simply supply the result file. See analyzeCPC2 for details. |
pathToPFAMresultFile |
A string indicating the full path to the Pfam result file(s). If multiple result files were created (multiple web-server runs) just supply all the paths as a vector of strings. If the webserver is used you need to copy paste the result part of the mail you get into a empty plain text document (notepad, sublimetext TextEdit or similar (aka not word)) and save that. See analyzePFAM for details. |
pathToIUPred2AresultFile |
A string indicating the full path to the NetSurfP-2 result csv file. See analyzeIUPred2A for details. |
pathToNetSurfP2resultFile |
A string indicating the full path to the NetSurfP-2 result csv file. See analyzeNetSurfP2 for details. |
pathToSignalPresultFile |
A string indicating the full path to the SignalP result file(s). If multiple result files were created (multiple web-server runs) just supply all the paths as a vector of strings. If using the web-server the results should be copy pasted into a empty plain text document (notepad, sublimetext TextEdit or similar (aka not word)) and save that. See analyzeSignalP for details. |
consequencesToAnalyze |
A vector of strings indicating what type of functional consequences to analyze. Do note that there is bound to be some differences between transcripts (else there would be identical). See details in analyzeSwitchConsequences for full list of usable strings and their meaning. Default is c('intron_retention','coding_potential','ORF_seq_similarity','NMD_status','domains_identified','signal_peptide_identified') (corresponding to analyze: intron retention, CPAT result, ORF AA sequence similarity, NMD status, PFAM domains annotated and signal peptides annotated by Pfam). |
pathToOutput |
A path to the folder in which the plots should be made. Default is working directory ( getwd() ). |
fileType |
A string indicating which file type is generated. Available options are \'pdf\' and \'png\'. Default is pdf. |
asFractionTotal |
A logic indicating whether the number of consequences should be calculated as numbers (if FALSE) or as a fraction of the total number of switches in the plot summarizing general consequences of all the isoform switches. Default is FALSE. |
outputPlots |
A logic indicating whether all isoform switches as well as the summary of functional consequences should be saved in the directory specified by |
quiet |
A logic indicating whether to avoid printing progress messages (incl. progress bar). Default is FALSE |
This function performs the second part of a Isoform Analysis Workflow by:
Adding external sequence analysis (see analyzeCPAT, analyzeCPC2, analyzePFAM and analyzeSignalP)
Predict functional consequences of switching (see analyzeSwitchConsequences)
Output Isoform Switch Consequence plots for all genes where there is a significant isoform switch (see switchPlot)
Output a visualization of general consequences of isoform switches.
This function
Returns the supplied switchAnalyzeRlist
now annotated with all the analysis described above
Generate one folder per comparison of conditions containing the isoform switch analysis plot of all genes with significant isoforms switches
Saves 3 plots summarizing the overall consequences of all the isoform switchces.
Kristoffer Vitting-Seerup
Vitting-Seerup et al. The Landscape of Isoform Switches in Human Cancers. Mol. Cancer Res. (2017).
analyzeCPAT
analyzeCPC2
analyzeIUPred2A
analyzeNetSurfP2
analyzePFAM
analyzeSignalP
analyzeAlternativeSplicing
extractSwitchSummary
analyzeSwitchConsequences
switchPlotTopSwitches
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | ### Please note
# The way of importing files in the following example with
# "system.file('pathToFile', package="IsoformSwitchAnalyzeR") is
# specialized way of accessing the example data in the IsoformSwitchAnalyzeR package
# and not smoothing you need to do - just supply the string e.g.
# "/path/to/externalAnalysis/toolResult.txt" pointing to the result file.
data("exampleSwitchListIntermediary")
exampleSwitchListAnalyzed <- isoformSwitchAnalysisPart2(
switchAnalyzeRlist = exampleSwitchListIntermediary,
dIFcutoff = 0.4, # Set high for short runtime in example data
pathToCPC2resultFile = system.file("extdata/cpc2_result.txt", package = "IsoformSwitchAnalyzeR"),
pathToPFAMresultFile = system.file("extdata/pfam_results.txt", package = "IsoformSwitchAnalyzeR"),
pathToIUPred2AresultFile = system.file("extdata/iupred2a_result.txt.gz", package = "IsoformSwitchAnalyzeR"),
pathToSignalPresultFile = system.file("extdata/signalP_results.txt", package = "IsoformSwitchAnalyzeR"),
codingCutoff = 0.725,
removeNoncodinORFs = TRUE, # Because ORF was predicted de novo
outputPlots = FALSE # keeps the function from outputting the plots from this example code
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.