Skip to content

Commit 00e3a44

Browse files
author
innesbre
committed
v0.1.0
0 parents  commit 00e3a44

9 files changed

Lines changed: 119 additions & 0 deletions

File tree

.Rbuildignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
^.*\.Rproj$
2+
^\.Rproj\.user$

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.Rproj.user
2+
.Rhistory
3+
.RData
4+
.Ruserdata

AgingMouseBrainCCInx.Rproj

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Version: 1.0
2+
3+
RestoreWorkspace: Default
4+
SaveWorkspace: Default
5+
AlwaysSaveHistory: Default
6+
7+
EnableCodeIndexing: Yes
8+
UseSpacesForTab: Yes
9+
NumSpacesForTab: 2
10+
Encoding: UTF-8
11+
12+
RnwWeave: Sweave
13+
LaTeX: pdfLaTeX
14+
15+
AutoAppendNewline: Yes
16+
StripTrailingWhitespace: Yes
17+
18+
BuildType: Package
19+
PackageUseDevtools: Yes
20+
PackageInstallArgs: --no-multiarch --with-keep.source

DESCRIPTION

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
Package: AgingMouseBrainCCInx
2+
Type: Package
3+
Title: Cell-cell interaction prediction from single-cell transcriptomic profiling of the aging mouse brain
4+
Version: 0.1.0
5+
Author: Methodios Ximerakis,
6+
Scott L. Lipnick,
7+
Brendan T. Innes,
8+
Sean K. Simmons,
9+
Xian Adiconis,
10+
Danielle Dionne,
11+
Brittany A. Mayweather,
12+
Lan Nguyen,
13+
Zachary Niziolek,
14+
Ceren Ozek,
15+
Vincent L. Butty,
16+
Ruth Isserlin,
17+
Sean M. Buchanan,
18+
Stuart S. Levine,
19+
Aviv Regev,
20+
Gary D Bader,
21+
Joshua Z. Levin,
22+
Lee L. Rubin
23+
Maintainer: Brendan T. Innes <brendan.innes@mail.utoronto.ca>
24+
Description: Data package for the cell-cell interaction predictions from the
25+
paper "single-cell transcriptomic profiling of the aging mouse brain". The
26+
package contains an RData list object with both the edge list and node
27+
metadata of predicted cell-cell interactions between cell types in the mouse
28+
brain, and their changes with aging. The predictions were generated using
29+
CCInx (baderlab.github.io/CCInx), and can be viewed using the function
30+
?ViewAgingMouseBrainCCInx.
31+
License: MIT + file LICENSE
32+
Encoding: UTF-8
33+
LazyData: true
34+
Depends: CCInx (>= 0.3.0)
35+
Remotes: Baderlab/CCInx

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019 Brendan T. Innes
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

NAMESPACE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
exportPattern("^[[:alpha:]]+")

R/ViewAgingMouseBrainCCInx.R

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#' View AgingMouseBrain cell-cell interaction predictions in the CCInx Shiny app
2+
#'
3+
#' A wrapper function to view the \code{AgingMouseBrainCCInx} dataset in the
4+
#' \code{CCInx} Shiny app.
5+
#'
6+
#' @return The function causes the scClustViz Shiny GUI app to open in a
7+
#' seperate window.
8+
#'
9+
#' @examples
10+
#' ViewAgingMouseBrainCCInx()
11+
#'
12+
#' @seealso \url{https://baderlab.github.io/CCInx} for information on
13+
#' \code{scClustViz}.
14+
#'
15+
#' @export
16+
17+
ViewAgingMouseBrainCCInx <- function() {
18+
if (exists("OxYxCCInx")) {
19+
ViewCCInx(OxYxCCInx)
20+
} else {
21+
load(system.file("data/OX_YX_CCInx_forPub.RData",package="AgingMouseBrainCCInx"))
22+
ViewCCInx(OxYxCCInx)
23+
}
24+
}

inst/data/OX_YX_CCInx_forPub.RData

20.4 MB
Binary file not shown.

man/hello.Rd

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
\name{hello}
2+
\alias{hello}
3+
\title{Hello, World!}
4+
\usage{
5+
hello()
6+
}
7+
\description{
8+
Prints 'Hello, world!'.
9+
}
10+
\examples{
11+
hello()
12+
}

0 commit comments

Comments
 (0)