Skip to content

Instantly share code, notes, and snippets.

View kozo2's full-sized avatar

Kozo Nishida kozo2

View GitHub Profile

logo

Exercise2: scTensorのデモ

このノートブックでは、1細胞RNA-Seqデータ内に含まれる細胞間相互作用(CCI)を検出するためのR/Bioconductorパッケージ、scTensorの使い方について説明します

まずは、このノートブックの実行に必要なパッケージのインストールとロードを行います

logo

Exercise2: scTensorのデモ

このノートブックでは、1細胞RNA-Seqデータ内に含まれる細胞間相互作用(CCI)を検出するためのR/Bioconductorパッケージ、scTensorの使い方について説明します

まずは、このノートブックの実行に必要なパッケージのインストールとロードを行います

---
title: "Exercise1: Rの基本操作"
output: html_notebook
---
このノートブックでは、Rの基本的な使い方について説明します
## データ型
---

logo

Exercise1: Rの基本操作

このノートブックでは、Rの基本的な使い方について説明します

データ型


@kozo2
kozo2 / HowToUseCircleCI4cyautoRmd.md
Last active December 14, 2019 02:10
How to use CircleCI for cytoscape-automation/for-scripters/R/notebooks/
---
title: "Exercise2: scTensorのデモ"
output: html_notebook
---
<p><img alt="logo" width="200" src="https://dl.dropboxusercontent.com/s/nm3k2p6i3k6d6gl/sctensor.png" align="left" /></p>
<h1>Exercise2: scTensorのデモ</h1>
** inst
** byte-compile and prepare package for lazy loading
** help
*** installing help indices
** building package indices
** installing vignettes
** testing if installed package can be loaded from temporary location
** checking absolute paths in shared objects and dynamic libraries
** testing if installed package can be loaded from final location
** testing if installed package keeps a record of temporary installation path
** testing if installed package can be loaded from final location
** testing if installed package keeps a record of temporary installation path
* DONE (SingleCellExperiment)
* installing *source* package ‘LRBase.Hsa.eg.db’ ...
** using staged installation
** R
** inst
** byte-compile and prepare package for lazy loading
** help
*** installing help indices
@kozo2
kozo2 / Dockerfile
Last active December 3, 2019 09:29
Dockerfile for Cytoscape and RCy3
FROM bioconductor/release_core2
MAINTAINER Kozo Nishida ([email protected])
RUN R -e "BiocManager::install("RCy3")"
RUN apt-get update && apt-get install -y emacs java-common
RUN wget https://d3pxv6yz143wms.cloudfront.net/8.232.09.1/java-1.8.0-amazon-corretto-jdk_8.232.09-1_amd64.deb
RUN wget https://github.com/cytoscape/cytoscape/releases/download/3.7.2/cytoscape-3.7.2.tar.gz
RUN dpkg -i java-1.8.0-amazon-corretto-jdk_8.232.09-1_amd64.deb
RUN tar xf cytoscape-3.7.2.tar.gz && rm java-1.8.0-amazon-corretto-jdk_8.232.09-1_amd64.deb cytoscape-3.7.2.tar.gz
---
title: "Functional Enrichment Analysis"
author: "Kozo Nishida, Kristina Hanspers and Alex Pico"
date: "`r Sys.Date()`"
output:
BiocStyle::html_document:
toc: true
toc_depth: 4
df_print: paged
---