Skip to content

Commit

Permalink
updated namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
ajitjohnson committed Jun 17, 2020
1 parent ca6b9e3 commit aed10fd
Show file tree
Hide file tree
Showing 38 changed files with 824 additions and 669 deletions.
5 changes: 3 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 1,7 @@
Package: arseq
Type: Package
Title: Automated RNA Sequencing Analysis Pipeline
Version: 2.2.1
Version: 2.2.2
Author: Ajit Johnson Nirmal
Maintainer: Ajit Johnson Nirmal <[email protected]>
Description: Biologist friendly program that supports the following analysis in an automated fashion with minimal coding requirement.
Expand All @@ -24,6 24,7 @@ Description: Biologist friendly program that supports the following analysis in
Kyoto Encyclopedia of Genes and Genomes pathway enrichment of the differentially expressed genes.
Kyoto Encyclopedia of Genes and Genomes pathway diagrams of the top 5 enriched pathways.
Gene Set Enrichment Analysis (H, C1, C2, C3, C4, C5, C6, C7 gene set).
Reactome Enrichment Analysis
Custom Gene Set Enrichment Analysis.
License: GPL-3
Encoding: UTF-8
Expand Down Expand Up @@ -62,6 63,6 @@ Imports:
ComplexHeatmap (>= 2.5.2),
clusterProfiler (>= 3.14.3),
ReactomePA (>= 1.30.0)
RoxygenNote: 6.1.1
RoxygenNote: 7.0.2
URL: https://github.com/ajitjohnson/arseq
Suggests: testthat
11 changes: 10 additions & 1 deletion NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,4 1,4 @@
# Generated by roxygen2: do not edit by hand
# Generated by roxygen2: do not edit by hand

export(arseq)
export(arseq.ensembl2genename)
Expand All @@ -11,18 11,26 @@ export(arseq.gsea.preprocess)
export(arseq.gsea.runall)
export(arseq.kegg.enrich)
export(arseq.kegg.enrich.plot)
export(arseq.kmeans)
export(arseq.kmeans.plot)
export(arseq.kmeans.reactome.plot)
export(arseq.mds.plot)
export(arseq.mvg)
export(arseq.mvg.plot)
export(arseq.pca)
export(arseq.pca.plot)
export(arseq.poisd.dist)
export(arseq.poisd.dist.plot)
export(arseq.reactome.enrich)
export(arseq.volcano.plot)
import(ComplexHeatmap)
import(DESeq2)
import(EnhancedVolcano)
import(PoiClaClu)
import(RColorBrewer)
import(ReactomePA)
import(circlize)
import(clusterProfiler)
import(fgsea)
import(gage)
import(ggplot2)
Expand Down Expand Up @@ -54,6 62,7 @@ importFrom(stats,cmdscale)
importFrom(stats,complete.cases)
importFrom(stats,dist)
importFrom(stats,hclust)
importFrom(stats,kmeans)
importFrom(stats,na.omit)
importFrom(stats,prcomp)
importFrom(stats,var)
3 changes: 1 addition & 2 deletions R/arseq.kmeans.plot.R
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 2,10 @@
#' @description Heatmap of the Most Variable genes divided into clusters
#' @param data Normalized expression dataframe
#' @param clusters List of gene clusters returned by Kmeans clustering algorithm
#' @return Kmeans clusters
#' @import ComplexHeatmap
#' @import circlize
#' @import RColorBrewer
#' @return Heatmap
#' @examples
#' arseq.kmeans.plot (data,clusters=kmeansclusters,metadata= example_meta,intgroup="treatment")
#' @export
Expand All @@ -18,7 18,6 @@ arseq.kmeans.plot <- function(data, clusters, metadata,
clusters <- data.frame(clusters)

# Set the colors for heatmap
require(circlize)
h1_col = colorRamp2(c(-2, -1, 0, 1, 2), c("#4B6AAF", '#55B0AE', "#F8F6B8","#F5A15B","#B11E4B"))

# Add Row annotation (clusters)
Expand Down
100 changes: 58 additions & 42 deletions man/arseq.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

48 changes: 24 additions & 24 deletions man/arseq.deg.plot.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

42 changes: 21 additions & 21 deletions man/arseq.ensembl2genename.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

42 changes: 21 additions & 21 deletions man/arseq.euclid.dist.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

44 changes: 22 additions & 22 deletions man/arseq.euclid.dist.plot.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit aed10fd

Please sign in to comment.