- ftp://ftp.ncbi.nlm.nih.gov/sra/reports/Mirroring/
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: "Big Data Approaches" | |
| subtitle: "Where to go with Bioconductor" | |
| event: "Bioconductor Technical Advisory Board Meeting" | |
| #author: Sean Davis | |
| date: "`r Sys.Date()`" | |
| output: | |
| BiocStyle::html_document | |
| --- |
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(tibble) | |
| library(jsonlite) | |
| library(curl) | |
| as_tibble(jsonlite::fromJSON(curl('https://api.omicidx.cancerdatasci.org/sra/studies/ERP009142/runs?size=500'))$hits) |
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
| """ | |
| Creates, updates, and deletes a job object. | |
| """ | |
| from os import path | |
| import os | |
| import yaml | |
| import uuid |
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
| module monitor | |
| go 1.13 | |
| require ( | |
| github.com/jackc/pgx/v4 v4.1.2 | |
| github.com/jinzhu/gorm v1.9.11 | |
| github.com/joho/godotenv v1.3.0 | |
| go.uber.org/zap v1.13.0 | |
| ) |
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
| from elasticsearch import Elasticsearch | |
| cli = Elasticsearch() # may need to create | |
| from elasticsearch_dsl import connections | |
| connections.add_connection('default',cli.client) | |
| import elasticsearch_dsl as dsl | |
| class Study(dsl.Document): | |
| class Index: | |
| name = 'sra_study-zq' |
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
| class Main { | |
| public static void main(String[] args) { | |
| String s1 = "Taylor Swift"; | |
| String s2 = "John Boyega"; | |
| String s3 = "Emma Stone"; | |
| String s4 = s1.substring(2,s1.length()-3).toLowerCase(); | |
| String s5 = s2.substring(2,s2.length()-3).toLowerCase(); | |
| String s6 = s3.substring(2,s3.length()-3).toLowerCase(); | |
| System.out.println(s1 + ">>>" + s4 + "\n" + s2 + ">>>" + s5 + "\n"+ s3 + ">>>" + s6); | |
| } |
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
| https://www.yeastgenome.org/run_seqtools?format=fasta&type=coding&genes=YAL001C&strains=S288C |
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
| # To accompany: https://seandavi.github.io/2019/05/single-cell-packages-and-dependencies-in-bioconductor-using-biocpkgtools/ | |
| library(BiocPkgTools) | |
| library(igraph) | |
| library(visNetwork) | |
| bpl = biocPkgList() | |
| bpl_sc = bpl[grepl('SingleCell', bpl$biocViews),] | |
| dep_df = buildPkgDependencyDataFrame() | |
| dep_graph = buildPkgDependencyIgraph(dep_df) | |
| dep_graph_sc = inducedSubgraphByPkgs(dep_graph, bpl_sc$Package ) | |
| ledges <- data.frame(color = c("green", "lightblue", "red"), |