10:00 - 12:00 ハッカソン 12:00 - 13:00 Lunch Break(所内食堂)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##' Import multiple KEGG pathways and integrate the pathways | |
##' into a cyjs file for Cy3D renderer | |
##' | |
##' @title Write cyjs file for transomics 3D visualization | |
##' @param pathwayID1 a KEGG pathway ID | |
##' @param pathwayID2 a KEGG pathway ID | |
##' @param pathwayID3 a KEGG pathway ID | |
##' @param zheight1 Z height for pathwayID1 | |
##' @param zheight2 Z height for pathwayID2 | |
##' @param zheight3 Z height for pathwayID3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/content# xvfb-run -a ./cytoscape-unix-3.8.0/cytoscape.sh | |
karaf: JAVA_HOME not set; results may vary | |
karaf.base: /content/cytoscape-unix-3.8.0/framework | |
JAVA_HOME: null | |
_ | |
___ _ _| |_ ___ ___ ___ __ _ _ __ ___ | |
/ __| | | | __|/ _ \/ __|/ __|/ _` | '_ \ / _ \ | |
| (__| |_| | |_| (_) \__ \ (__| (_| | |_) | __/ | |
\___|\__, |\__|\___/|___/\___|\__,_| .__/ \___| | |
|___/ |_| |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
karaf: JAVA_HOME not set; results may vary | |
karaf.base: /content/cytoscape-unix-3.8.0/framework | |
JAVA_HOME: null | |
_ | |
___ _ _| |_ ___ ___ ___ __ _ _ __ ___ | |
/ __| | | | __|/ _ \/ __|/ __|/ _` | '_ \ / _ \ | |
| (__| |_| | |_| (_) \__ \ (__| (_| | |_) | __/ | |
\___|\__, |\__|\___/|___/\___|\__,_| .__/ \___| | |
|___/ |_| |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
title: "transomics2cytoscape" | |
author: "Kozo Nishida" | |
date: "2/26/2020" | |
package: transomics2cytoscape | |
output: | |
BiocStyle::html_document | |
vignette: | | |
%\VignetteIndexEntry{transomics2cytoscape} | |
%\VignetteEngine{knitr::rmarkdown} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(dash) | |
library(dashCoreComponents) | |
library(dashHtmlComponents) | |
library(plotly) | |
#library(jsonlite) | |
app <- Dash$new() | |
app$layout( | |
htmlDiv( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Package: transomics2cytoscape | |
Type: Package | |
Title: Create 3D transomics network view with Çytoscape and Cy3D | |
Version: 0.99.0 | |
Authors@R: person("Kozo", "Nishida", role = c("aut", "cre"), | |
email = "[email protected]") | |
Depends: R (>= 3.6.0) | |
Imports: RCy3, | |
BiocStyle, | |
KEGGREST, |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root_node_df=getTableColumns('node') | |
root_edge_df=getTableColumns('edge') | |
# change networkforcus on GUI | |
gro_node_df=getTableColumns('node') | |
gro_edge_df=getTableColumns('edge') | |
new_node_df=bind_rows(roof_node_df, gro_node_df) | |
new_edge_df=bind_rows(roof_edge_df, gro_edge_df) | |
new_node_df %>% rename(id=SUID) -> foo |