Package 'ADAMgui'

Title: Activity and Diversity Analysis Module Graphical User Interface
Description: ADAMgui is a Graphical User Interface for the ADAM package. The ADAMgui package provides 2 shiny-based applications that allows the user to study the output of the ADAM package files through different plots. It's possible, for example, to choose a specific GFAG and observe the gene expression behavior with the plots created with the GFAGtargetUi function. Features such as differential expression and foldchange can be easily seen with aid of the plots made with GFAGpathUi function.
Authors: Giordano Bruno Sanches Seco [aut], André Luiz Molan [ctb], Agnes Takeda [ctb], Jose Rybarczyk Filho [ctb, cre, ths]
Maintainer: Jose Luiz Rybarczyk Filho <[email protected]>
License: GPL (>= 2)
Version: 1.21.0
Built: 2024-07-25 05:15:48 UTC
Source: https://github.com/bioc/ADAMgui

Help Index


Aedes aegypti RNA-seq differential expression data example

Description

A sample fragment of differential gene expression from an RNA-seq experiment of Aedes aegypti mosquito.

Format

A data.frame with 1973 rows and 3 variables

References

AKBARI, O. S. et al. The developmental transcriptome of the mosquito aedes aegypti, an invasive species and major arbovirus vector. G3: Genes— Genomes— Genetics, Genetics Society of America, v. 3, n. 9, p. 1493–1509, 2013.

Examples

data(DiffAedes)

Relation between Aedes aegypti genes and KEGG pathways

Description

A relation between the GFAGs present in ResultAnalysisAedes and their respective genes.

Format

A data.frame with 782 rows and 2 variables

References

Molan, A. L. 2018. “Construction of a Tool for Multispecies Genic Functional Enrichment Analysis Among Comparative Samples.” Master’s thesis, Institute of Biosciences of Botucatu – Univ. Estadual Paulista. http://hdl.handle.net/11449/157105.

Examples

data(GeneFunctionAedes)

GFAGpathUi

Description

Launch GFAGpathUi Graphical User Interface (GUI) in local machine or default browser.

Usage

GFAGpathUi(browser)

Arguments

browser

is a logical variable necessary to run the app. When x=TRUE the app is launched in your default web browser. When x=FALSE the app is launched in your local machine.

Details

This shiny (GUI) enables the visualization and plotting of P.value distribution of the Paths in the GFAG output file. The plots were optimized for a maximun of 50 Paths, you can still plot more than 50 paths but the graphs tend to get rather long.

Value

return a shiny Graphical User Interface (GUI).

Author(s)

Giordano Bruno Sanches Seco <[email protected]>

Examples

#Creating input files
data(DiffAedes)
data(GeneFunctionAedes)
data(ResultAnalysisAedes)
## Not run: 
#Input file 1
write.table(DiffAedes,file = "DiffAedes.txt",sep = "\t", col.names = TRUE,
row.names = FALSE, quote = FALSE)
#Input file 2
write.table(GeneFunctionAedes,file = "GeneFunctionAedes.txt",sep = "\t",
col.names = TRUE, row.names = FALSE, quote = FALSE)
#Input file 3
write.table(ResultAnalysisAedes,file = "ResultAnalysisAedes.txt",sep = "\t",
col.names = TRUE, row.names = FALSE, quote = FALSE)
#Grahphical analysis
GFAGpathUi(browser = TRUE) # Launch the app in your default web browser.
GFAGpathUi(browser = FALSE) # Launch the app in your local machine.

## End(Not run)

GFAGtargetUi

Description

Launch Launch GFAGtargetUi Graphical User Interface (GUI) in local machine or default browser

Usage

GFAGtargetUi(browser)

Arguments

browser

is a logical variable necessary to run the app. When browser=TRUE the app is launched in your default web browser. When browser=FALSE the app is launched in your local machine.

Details

This shiny (GUI) enables the creation of a plot that shows the expression of the targets in a selected path between control and case. See the vignette for more information.

Value

return a shiny Graphical User Interface (GUI).

Author(s)

Giordano Bruno Sanches Seco <[email protected]>

Examples

#Creating input files
data(DiffAedes)
data(GeneFunctionAedes)
data(ResultAnalysisAedes)
## Not run: 
#Input file 1
write.table(DiffHs,file = "DiffAedes.txt",sep = "\t", col.names = TRUE,
row.names = FALSE, quote = FALSE)
#Input file 2
write.table(GeneFunctionHs,file = "GeneFunctionAedes.txt",sep = "\t",
col.names = TRUE, row.names = FALSE, quote = FALSE)
#Input file 3
write.table(ResultAnalysisAedes,file = "ResultAnalysisAedes.txt",sep = "\t",
col.names = TRUE, row.names = FALSE, quote = FALSE)
#Grahphical analysis
GFAGtargetUi(browser = TRUE) # Launch the app in your default web browser.
GFAGtargetUi(browser = FALSE) # Launch the app in your local machine.

## End(Not run)

Result from an example of ADAM Aedes aegypti analysis

Description

Result from ADAM Aedes aegypti analysis according to ExpressionAedes data.

Format

A data.frame with 87 rows and 22 variables

References

Molan, A. L. 2018. “Construction of a Tool for Multispecies Genic Functional Enrichment Analysis Among Comparative Samples.” Master’s thesis, Institute of Biosciences of Botucatu – Univ. Estadual Paulista. http://hdl.handle.net/11449/157105.

Examples

data(ResultAnalysisAedes)