Science Score: 26.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (13.9%) to scientific vocabulary
Repository
Basic Info
- Host: GitHub
- Owner: camdouglas
- License: other
- Language: R
- Default Branch: main
- Size: 53.3 MB
Statistics
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
- Releases: 0
Metadata Files
README.md
DeSciDe: A Tool for unbiased gene selection by simple visual analysis.
DeSciDe (Deciphering Scientific Discoveries) is an R package designed for genomic and proteomic data analysis, PubMed search, protein interaction network visualization, and comprehensive data summarization.
Features
- Perform PubMed searches for a list of genes and terms.
- Search the STRING database for protein interactions.
- Rank PubMed and STRING search results to identify high confidence and novel hits.
- Visualize results using heatmaps and network plots.
- Summarize data from multiple sources.
Installation
Before installing the DeSciDe package, make sure you have BiocManager installed:
# Install Bioconductor dependencies
if (!requireNamespace("BiocManager", quietly = TRUE))
install.packages("BiocManager")
BiocManager::install("STRINGdb")
BiocManager::install("ComplexHeatmap")
DeSciDe is available on CRAN, and it can be installed with:
# Install DeSciDe via CRAN
install.packages("DeSciDe")
You can install the development version of DeSciDe from GitHub using the devtools package:
# Install devtools if you haven't already
install.packages("devtools")
# Install DeSciDe from GitHub
devtools::install_github("camdouglas/DeSciDe")
Usage
Basic Example
Below is a basic example of how to use DeSciDe to analyze a list of genes and terms:
# Load the package
library(DeSciDe)
# Define your list of genes and terms
genes_list <- c("JUN", "MYC", "HDAC1", "TRIM33")
terms_list <- c("cancer", "romidepsin")
# Run the analysis pipeline
results <- descide(
genes_list = genes_list,
terms_list = terms_list
)
# View PubMed search results
head(results$summary_results)
Parameters
genes_list: A list of gene IDs.terms_list: A list of search terms.rank_method: Method to rank results ("weighted" or "total"). Defaults to "weighted".species: NCBI taxon ID of the species. Defaults to 9606 (Homo sapiens).network_type: Type of STRING network to use ("full" or "physical"). Defaults to "full".score_threshold: Minimum score threshold for STRING interactions. Defaults to 400.threshold_percentage: Percentage threshold for ranking. Defaults to 20%.export: Logical indicating whether to export the results. Defaults to FALSE.file_directory: Directory for saving the output files. Defaults to NULL.export_format: Format for export ("csv", "tsv", "excel"). Defaults to "csv".
Testing
Due to API rate limits and the potentially long duration of some tests, certain tests are skipped on CRAN using the skiponcran() function from the testthat package. These tests are designed to run in local environments and CI/CD pipelines where the environment variable NOT_CRAN is set to "true".
To run all tests locally, set the environment variable as follows:
NOT_CRAN=true R CMD check
Authors
- Cameron Douglas - Initial work - camerondouglas@ufl.edu
Owner
- Login: camdouglas
- Kind: user
- Repositories: 1
- Profile: https://github.com/camdouglas
GitHub Events
Total
- Watch event: 1
- Push event: 22
- Public event: 1
- Create event: 2
Last Year
- Watch event: 1
- Push event: 22
- Public event: 1
- Create event: 2
Packages
- Total packages: 1
-
Total downloads:
- cran 262 last-month
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 3
- Total maintainers: 1
cran.r-project.org: DeSciDe
Tool for Unbiased Literature Searching and Gene List Curation
- Homepage: https://github.com/camdouglas/DeSciDe
- Documentation: http://cran.r-project.org/web/packages/DeSciDe/DeSciDe.pdf
- License: MIT + file LICENSE
-
Latest release: 1.0.2
published 10 months ago