This file contains 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(devtools) | |
install_url("http://s3.amazonaws.com/vobencha-workshop/BioC2015LargeData_0.0.1.tar.gz") |
This file contains 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
# test |
This file contains 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(devtools) | |
install_url("http://s3.amazonaws.com/opencytoworkshop/BioC2015OpenCyto_1.0.tar.gz") |
This file contains 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(devtools) | |
install_url("http://s3.amazonaws.com/opencytoworkshop/BioC2015OpenCyto_1.0.tar.gz") |
This file contains 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
biocLite("gfinak/BioC2015OpenCyto", dependencies=TRUE, build_vignettes=TRUE, INSTALL_opts="--no-resave-data") | |
This file contains 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
$ R CMD BiocCheck KEGGREST_1.1.1.tar.gz | |
* This is BiocCheck, version 1.1.7. | |
* BiocCheck is a work in progress. Output and severity of issues may | |
change. | |
* Installing package... | |
* This is a software package, checking vignette directories... | |
* # of chunks: 23, # of eval=FALSE: 1 (4%) | |
* Checking version number... | |
* Checking biocViews... | |
* RECOMMENDED: Use valid biocViews. Invalid ones: ConnectTools |
This file contains 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
ruby_block "block1" do | |
block do | |
node.run_state['url'] = "https://google.com" | |
end | |
action :create | |
end | |
remote_file "/tmp/url" do | |
source node.run_state['url'] |
This file contains 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
--- /Users/dante/Downloads/shiny/inst/www/shared/shiny.js 2013-10-29 11:36:43.000000000 -0700 | |
+++ shiny2.js 2014-01-07 21:53:53.000000000 -0800 | |
@@ -1,3 +1,4 @@ | |
+console.log("in shiny2.js"); | |
/*jshint browser:true, jquery:true, strict:false, curly:false, indent:2*/ | |
(function() { | |
@@ -1214,7 +1215,8 @@ | |
"aaSorting": [], | |
"bSortClasses": false, |
This file contains 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(shiny) | |
addResourcePath("js", "/tmp/shinydemo") | |
runApp(list( | |
ui = basicPage( | |
tagList(singleton( | |
tags$head( | |
tags$script(src="js/shiny2.js"), | |
tags$script(src="js/demo.js") |
This file contains 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
console.log("here we are in demo.js"); | |
var myCallbackFunction = function( nRow, aData, iDisplayIndex ) { | |
console.log("in row callback function"); | |
return nRow; | |
} | |
$(function() { | |
console.log("in document ready function"); | |
}); |