├── docs ├── CNAME ├── images │ ├── Aedin.jpg │ ├── Laurent.jpg │ ├── QianLiu.jpg │ ├── favicon.ico │ ├── BioC2020.png │ ├── SeanDavis.png │ ├── LeviWaldron.jpg │ ├── LoriShepherd.jpg │ ├── MartinMorgan.jpg │ ├── OriolSenan.jpg │ ├── PeterHickey.jpg │ ├── SiminaBoca.png │ ├── VincentCarey.jpg │ ├── VincentCarey.png │ ├── ZhezhenWang.JPG │ ├── docker_icon.png │ ├── HelenaCrowell.jpg │ ├── LorenaPantano.jpeg │ ├── MatthewMcCall.jpeg │ ├── VenuThatikonda.jpg │ ├── sponsors │ │ ├── maze.png │ │ ├── ru-logo.png │ │ ├── genentech.jpg │ │ ├── ISB-CGC-Logo.png │ │ ├── StickerMule.png │ │ ├── rpci-logo_1.png │ │ ├── F1000R_logo_crop.png │ │ ├── F1000R_logo_header.png │ │ ├── PrimeDiscoveries.png │ │ ├── RU_logo_tagline294.jpg │ │ ├── HDSI_logo_horizontal.png │ │ ├── DFCI Logo Lens Stacked.jpg │ │ ├── novartis_logo_pos_rgb.png │ │ ├── Biogen_Logo_SmallScale_rgb.jpg │ │ ├── NYU-Langone-Health-768x402.jpg │ │ ├── RConsortium_Vertical_Pantone.png │ │ └── RStudio-Logo-Blue-Gray-250.png │ ├── BioC2020_virtual.png │ ├── CharlotteSoneson.jpg │ ├── FrederickBoehm.jpeg │ ├── GitHub-Mark-32px.png │ ├── MikhailDozmorov.jpg │ ├── ThomasSCarroll.jpeg │ ├── logo_bioconductor.gif │ ├── speakers │ │ ├── AaronLun.jpg │ │ ├── FeiChen.jpg │ │ ├── CarolineUhler.jpg │ │ ├── CorriePainter.jpg │ │ ├── KylieArielBemis.jpg │ │ ├── RafaelIrizarry.jpg │ │ ├── GabrieladeQueiroz.jpg │ │ └── XiaoleShirleyLiu.jpg │ ├── 240px-Missing_avatar.svg.png │ ├── ThomasSCarroll_headshot.png │ └── flyers │ │ ├── BioC2020FlyerPortrait.pdf │ │ ├── BioC2020Flyerlandscape.pdf │ │ └── BioC2020Flyerlandscape_lg.pdf ├── assets │ ├── Hotels.near.DFCI.pdf │ ├── fonts │ │ ├── Noto-Sans-700 │ │ │ ├── Noto-Sans-700.eot │ │ │ ├── Noto-Sans-700.ttf │ │ │ ├── Noto-Sans-700.woff │ │ │ ├── Noto-Sans-700.woff2 │ │ │ └── Noto-Sans-700.svg │ │ ├── Noto-Sans-italic │ │ │ ├── Noto-Sans-italic.eot │ │ │ ├── Noto-Sans-italic.ttf │ │ │ ├── Noto-Sans-italic.woff │ │ │ └── Noto-Sans-italic.woff2 │ │ ├── Noto-Sans-regular │ │ │ ├── Noto-Sans-regular.eot │ │ │ ├── Noto-Sans-regular.ttf │ │ │ ├── Noto-Sans-regular.woff │ │ │ └── Noto-Sans-regular.woff2 │ │ └── Noto-Sans-700italic │ │ │ ├── Noto-Sans-700italic.eot │ │ │ ├── Noto-Sans-700italic.ttf │ │ │ ├── Noto-Sans-700italic.woff │ │ │ └── Noto-Sans-700italic.woff2 │ ├── js │ │ └── scale.fix.js │ └── css │ │ └── style.css ├── Gemfile ├── _config.yml ├── talks-community.md ├── posters.md ├── registration-cancel.md ├── registration-finish.md ├── _includes │ └── header.md ├── scholarships.md ├── past_conferences.md ├── caregiver-awards.md ├── registration.md ├── sponsor.md ├── call-for-abstracts.md ├── schedule-day-three.md ├── schedule-day-four.md ├── schedule-day-five.md ├── schedule-day-one.md ├── schedule-day-two.md ├── travel-accommodations.md ├── workshop-syllabus.md ├── instructions-for-presenters.md ├── workshops.Rmd ├── _layouts │ └── default.html ├── workshops_full.md ├── index.md ├── Gemfile.lock ├── organizers.md ├── code_of_conduct.md ├── schedule.md └── workshops.md ├── .bundle └── config ├── .gitignore └── README.md /docs/CNAME: -------------------------------------------------------------------------------- 1 | bioc2020.bioconductor.org 2 | -------------------------------------------------------------------------------- /.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_PATH: "vendor/bundle" 3 | -------------------------------------------------------------------------------- /docs/images/Aedin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/Aedin.jpg -------------------------------------------------------------------------------- /docs/images/Laurent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/Laurent.jpg -------------------------------------------------------------------------------- /docs/images/QianLiu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/QianLiu.jpg -------------------------------------------------------------------------------- /docs/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/favicon.ico -------------------------------------------------------------------------------- /docs/images/BioC2020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/BioC2020.png -------------------------------------------------------------------------------- /docs/images/SeanDavis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/SeanDavis.png -------------------------------------------------------------------------------- /docs/images/LeviWaldron.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/LeviWaldron.jpg -------------------------------------------------------------------------------- /docs/images/LoriShepherd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/LoriShepherd.jpg -------------------------------------------------------------------------------- /docs/images/MartinMorgan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/MartinMorgan.jpg -------------------------------------------------------------------------------- /docs/images/OriolSenan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/OriolSenan.jpg -------------------------------------------------------------------------------- /docs/images/PeterHickey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/PeterHickey.jpg -------------------------------------------------------------------------------- /docs/images/SiminaBoca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/SiminaBoca.png -------------------------------------------------------------------------------- /docs/images/VincentCarey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/VincentCarey.jpg -------------------------------------------------------------------------------- /docs/images/VincentCarey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/VincentCarey.png -------------------------------------------------------------------------------- /docs/images/ZhezhenWang.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/ZhezhenWang.JPG -------------------------------------------------------------------------------- /docs/images/docker_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/docker_icon.png -------------------------------------------------------------------------------- /docs/images/HelenaCrowell.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/HelenaCrowell.jpg -------------------------------------------------------------------------------- /docs/images/LorenaPantano.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/LorenaPantano.jpeg -------------------------------------------------------------------------------- /docs/images/MatthewMcCall.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/MatthewMcCall.jpeg -------------------------------------------------------------------------------- /docs/images/VenuThatikonda.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/VenuThatikonda.jpg -------------------------------------------------------------------------------- /docs/images/sponsors/maze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/sponsors/maze.png -------------------------------------------------------------------------------- /docs/assets/Hotels.near.DFCI.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/assets/Hotels.near.DFCI.pdf -------------------------------------------------------------------------------- /docs/images/BioC2020_virtual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/BioC2020_virtual.png -------------------------------------------------------------------------------- /docs/images/CharlotteSoneson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/CharlotteSoneson.jpg -------------------------------------------------------------------------------- /docs/images/FrederickBoehm.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/FrederickBoehm.jpeg -------------------------------------------------------------------------------- /docs/images/GitHub-Mark-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/GitHub-Mark-32px.png -------------------------------------------------------------------------------- /docs/images/MikhailDozmorov.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/MikhailDozmorov.jpg -------------------------------------------------------------------------------- /docs/images/ThomasSCarroll.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/ThomasSCarroll.jpeg -------------------------------------------------------------------------------- /docs/images/logo_bioconductor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/logo_bioconductor.gif -------------------------------------------------------------------------------- /docs/images/speakers/AaronLun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/speakers/AaronLun.jpg -------------------------------------------------------------------------------- /docs/images/speakers/FeiChen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/speakers/FeiChen.jpg -------------------------------------------------------------------------------- /docs/images/sponsors/ru-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/sponsors/ru-logo.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | docs/_site 2 | docs/.bundle/ 3 | docs/.sass-cache/ 4 | docs/vendor/ 5 | resources/ 6 | .DS_store 7 | .Rproj.user 8 | -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | gem 'jekyll' 3 | gem 'github-pages', group: :jekyll_plugins 4 | gem 'minimal' 5 | -------------------------------------------------------------------------------- /docs/images/sponsors/genentech.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/sponsors/genentech.jpg -------------------------------------------------------------------------------- /docs/images/speakers/CarolineUhler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/speakers/CarolineUhler.jpg -------------------------------------------------------------------------------- /docs/images/speakers/CorriePainter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/speakers/CorriePainter.jpg -------------------------------------------------------------------------------- /docs/images/sponsors/ISB-CGC-Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/sponsors/ISB-CGC-Logo.png -------------------------------------------------------------------------------- /docs/images/sponsors/StickerMule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/sponsors/StickerMule.png -------------------------------------------------------------------------------- /docs/images/sponsors/rpci-logo_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/sponsors/rpci-logo_1.png -------------------------------------------------------------------------------- /docs/images/240px-Missing_avatar.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/240px-Missing_avatar.svg.png -------------------------------------------------------------------------------- /docs/images/ThomasSCarroll_headshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/ThomasSCarroll_headshot.png -------------------------------------------------------------------------------- /docs/images/speakers/KylieArielBemis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/speakers/KylieArielBemis.jpg -------------------------------------------------------------------------------- /docs/images/speakers/RafaelIrizarry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/speakers/RafaelIrizarry.jpg -------------------------------------------------------------------------------- /docs/images/speakers/GabrieladeQueiroz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/speakers/GabrieladeQueiroz.jpg -------------------------------------------------------------------------------- /docs/images/speakers/XiaoleShirleyLiu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/speakers/XiaoleShirleyLiu.jpg -------------------------------------------------------------------------------- /docs/images/sponsors/F1000R_logo_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/sponsors/F1000R_logo_crop.png -------------------------------------------------------------------------------- /docs/images/sponsors/F1000R_logo_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/sponsors/F1000R_logo_header.png -------------------------------------------------------------------------------- /docs/images/sponsors/PrimeDiscoveries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/sponsors/PrimeDiscoveries.png -------------------------------------------------------------------------------- /docs/images/sponsors/RU_logo_tagline294.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/sponsors/RU_logo_tagline294.jpg -------------------------------------------------------------------------------- /docs/images/flyers/BioC2020FlyerPortrait.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/flyers/BioC2020FlyerPortrait.pdf -------------------------------------------------------------------------------- /docs/images/flyers/BioC2020Flyerlandscape.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/flyers/BioC2020Flyerlandscape.pdf -------------------------------------------------------------------------------- /docs/images/sponsors/HDSI_logo_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/sponsors/HDSI_logo_horizontal.png -------------------------------------------------------------------------------- /docs/images/flyers/BioC2020Flyerlandscape_lg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/flyers/BioC2020Flyerlandscape_lg.pdf -------------------------------------------------------------------------------- /docs/images/sponsors/DFCI Logo Lens Stacked.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/sponsors/DFCI Logo Lens Stacked.jpg -------------------------------------------------------------------------------- /docs/images/sponsors/novartis_logo_pos_rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/sponsors/novartis_logo_pos_rgb.png -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-700/Noto-Sans-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/assets/fonts/Noto-Sans-700/Noto-Sans-700.eot -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-700/Noto-Sans-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/assets/fonts/Noto-Sans-700/Noto-Sans-700.ttf -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-700/Noto-Sans-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/assets/fonts/Noto-Sans-700/Noto-Sans-700.woff -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-700/Noto-Sans-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/assets/fonts/Noto-Sans-700/Noto-Sans-700.woff2 -------------------------------------------------------------------------------- /docs/images/sponsors/Biogen_Logo_SmallScale_rgb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/sponsors/Biogen_Logo_SmallScale_rgb.jpg -------------------------------------------------------------------------------- /docs/images/sponsors/NYU-Langone-Health-768x402.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/sponsors/NYU-Langone-Health-768x402.jpg -------------------------------------------------------------------------------- /docs/images/sponsors/RConsortium_Vertical_Pantone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/sponsors/RConsortium_Vertical_Pantone.png -------------------------------------------------------------------------------- /docs/images/sponsors/RStudio-Logo-Blue-Gray-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/images/sponsors/RStudio-Logo-Blue-Gray-250.png -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.eot -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.ttf -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- 1 | title: BioC 2020 2 | description: 3 | Where Software and Biology Connect.
4 | July 27 - 31, Boston, USA. 5 | theme: jekyll-theme-minimal 6 | -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.woff -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.woff2 -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.eot -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.ttf -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.woff -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.woff2 -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.eot -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.ttf -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.woff -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BioC2020/HEAD/docs/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.woff2 -------------------------------------------------------------------------------- /docs/talks-community.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | {% include header.md %} 6 | 7 | ## Community-Contributed Talks (Tentative) 8 | 9 | - See the Conference [Schedule](schedule.md) for invited talks. 10 | 11 | TBA. -------------------------------------------------------------------------------- /docs/posters.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | {% include header.md %} 6 | 7 | ## Posters 8 | 9 | Posters are available at the [F1000Research Bioconductor gateway](https://f1000research.com/gateways/bioconductor/bioc2020) 10 | -------------------------------------------------------------------------------- /docs/registration-cancel.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | {% include header.md %} 6 | 7 | **Registration Cancelled** 8 | 9 | - [Start over][1]. 10 | - View the [schedule][2]. 11 | - Questions? Send [email][3]. 12 | 13 | [1]: ./registration 14 | [2]: ./schedule 15 | [3]: mailto:bioc2020@bioconductor.org?subject=BioC%202020%20registration 16 | -------------------------------------------------------------------------------- /docs/registration-finish.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | {% include header.md %} 6 | 7 | **Registration successful** 8 | 9 | - Submit a [talk, poster, workshop, or birds-of-a-feather][2] abstract. 10 | - View the [schedule][1] for updated speakers and workshops. 11 | - Follow [#bioc2020][tweet] for late-breaking announcements. 12 | 13 | Remember to arrange your own lodging. See you in Toronto! 14 | 15 | [1]: ./schedule 16 | [2]: ./call-for-abstracts 17 | -------------------------------------------------------------------------------- /docs/_includes/header.md: -------------------------------------------------------------------------------- 1 | # BioC 2020: Where Software and Biology Connect 2 | 3 | When: July 27 - 31, 2020
4 | What: Community/Developer Day, Main Conference
5 | Where: Virtual Conference
6 | Slack: [Bioconductor Team][] (`#bioc2020` channel)
7 | Twitter: [#bioc2020][tweet]
8 | 9 | [tweet]: https://twitter.com/hashtag/bioc2020?f=tweets 10 | [Simmons University and Harvard Medical School]: ./travel-accommodations 11 | [Bioconductor Team]: https://bioc-community.herokuapp.com/ 12 | -------------------------------------------------------------------------------- /docs/scholarships.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | {% include header.md %} 6 | 7 | ## Scholarships 8 | 9 | Scholarships cover registration. All scholarship recipients 10 | are encouraged to present a talk, poster, organize a “watch party”, or generally to participate actively in the conference. 11 | To apply for a scholarship, complete 12 | the following form: [Scholarship Submission Form](https://docs.google.com/forms/d/e/1FAIpQLSdr__Ox7kWpTV0lwjJ7skD617HcWFQmPrJqyMpVN27darvZQg/viewform). 13 | 14 | ### Key dates 15 | 16 | - July 16, 2020: Scholarship Submission deadline. 17 | - July 20, 2020: Notification of decision. 18 | -------------------------------------------------------------------------------- /docs/assets/js/scale.fix.js: -------------------------------------------------------------------------------- 1 | (function(document) { 2 | var metas = document.getElementsByTagName('meta'), 3 | changeViewportContent = function(content) { 4 | for (var i = 0; i < metas.length; i++) { 5 | if (metas[i].name == "viewport") { 6 | metas[i].content = content; 7 | } 8 | } 9 | }, 10 | initialize = function() { 11 | changeViewportContent("width=device-width, minimum-scale=1.0, maximum-scale=1.0"); 12 | }, 13 | gestureStart = function() { 14 | changeViewportContent("width=device-width, minimum-scale=0.25, maximum-scale=1.6"); 15 | }, 16 | gestureEnd = function() { 17 | initialize(); 18 | }; 19 | 20 | 21 | if (navigator.userAgent.match(/iPhone/i)) { 22 | initialize(); 23 | 24 | document.addEventListener("touchstart", gestureStart, false); 25 | document.addEventListener("touchend", gestureEnd, false); 26 | } 27 | })(document); 28 | -------------------------------------------------------------------------------- /docs/past_conferences.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | {% include header.md %} 6 | 7 | # Past Bioconductor conferences and course material 8 | 9 | - [Bioconductor 2019](https://bioc2019.bioconductor.org/) 10 | - [Bioconductor 2018](https://bioc2018.bioconductor.org/) 11 | - [Bioconductor 2017](https://bioconductor.org/help/course-materials/2017/BioC2017/) 12 | - [Bioconductor 2016](https://bioconductor.org/help/course-materials/2016/BioC2016/) 13 | - [Bioconductor 2015](https://bioconductor.org/help/course-materials/2015/BioC2015/) 14 | - [Bioconductor 2014](https://bioconductor.org/help/course-materials/2014/BioC2014/) 15 | - [Bioconductor 2013](https://bioconductor.org/help/course-materials/2013/BioC2013/) 16 | - [Bioconductor 2012](https://bioconductor.org/help/course-materials/2012/BioC2012/) 17 | - [Bioconductor 2011](https://bioconductor.org/help/course-materials/2011/BioC2011/) 18 | - [Bioconductor 2010](https://bioconductor.org/help/course-materials/2010/BioC2010/) 19 | - [Bioconductor 2009](https://bioconductor.org/help/course-materials/2009/BioC2009/) 20 | - [Bioconductor 2008](https://bioconductor.org/help/course-materials/2008/BioC2008/) 21 | - [Bioconductor 2007](https://bioconductor.org/help/course-materials/2007/BioC2007/) 22 | - [Bioconductor 2006](https://bioconductor.org/help/course-materials/2006/BioC2006/) 23 | - [Bioconductor 2005](https://bioconductor.org/help/course-materials/2005/BioC2005/) 24 | -------------------------------------------------------------------------------- /docs/caregiver-awards.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | {% include header.md %} 6 | 7 | ## Caregiver awards 8 | 9 | Small awards up to $500 _per family_ are available to _Bioconductor_ attendees 10 | who will be incurring additional expenses for childcare or other caregiving responsibilities 11 | (such as elder care) during the meeting. Fill the [Caregiver Award Submission Form](https://docs.google.com/forms/d/e/1FAIpQLSd2DPyob3vkZFbgtalIqzmZxg58P27qyP8iiivHxgrNTE5Puw/viewform) to apply. 12 | 13 | ### Allowable expenses 14 | 15 | - Additional child care expenses, including overtime at childcare center, virtual childcare, etc. 16 | - Additional care expenses at home incurred because the primary caregiver was 17 | attending the meeting (e.g., cost of a sitter or nurse) 18 | 19 | **Receipts will be required for reimbursement** 20 | 21 | ### Unallowable expenses 22 | 23 | - Regular childcare expenses 24 | - Food 25 | 26 | ### Selection of awards 27 | 28 | - If the number of requests for grants exceeds the funding, preference will be given to 29 | applicants in earlier career stages. 30 | 31 | ### Changes in circumstances 32 | 33 | - If the need changes between the time of application and the date of the meeting, please notify 34 | Bioconductor to explain. You will be notified if your need is still eligible for funding. 35 | 36 | ### Key dates 37 | 38 | - July 16, 2020: Caregiver Award Submission deadline. 39 | - July 20, 2020: Notification of decision. 40 | 41 | -------------------------------------------------------------------------------- /docs/registration.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | {% include header.md %} 6 | 7 | ## Registration 8 | 9 | Registration to virtual Bioc2020 is now closed. We are at capacity of the virtual platform. If registered participants are unable to attend, please let us know. If you have registered, you should receive an email from pathable.com with your login information to the virtual platform. 10 | 11 | In the unlikely situation that registered participants can not attend, if you wish to add your name to a waitlist [click here](https://forms.gle/eisvLzg4RpGZPnhr5) 12 | 13 | 14 | Register at [our event page](https://datasciences.eventsmart.com/events/bioc2020/). The registration fee includes access to the virtual platform for the conference, talks, workshops, Q&As following each session, network opportunities. This fee helps us cover the cost of the platform and other associated costs for the conference. 15 | 16 | If you are currently experiencing financial hardship or reduced funding, please apply for a [BioC2020 Scholarship](./scholarships.md) for a waiver on the registration fee. 17 | 18 | ## Fees 19 | 20 | | Rate | Price (USD) | Link | 21 | |--------------------------|-------------|---------------------------| 22 | | Flat rate fee for virtual conference | $50.00 | Closed | 23 | 24 | ## Cancellation Policy 25 | 26 | Bioconductor is a non-profit organization, and conferences are designed only to break even every year. As a result we are generally unable to offer individual refunds. 27 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | This repository contains material for the _Bioconductor_ annual 2 | conference. [View the conference web site][1]. 3 | 4 | Edit or add material as markdown files in the docs/ directory. Please 5 | wrap lines to 80 character width and aim for simple markdown rather 6 | than elaborate html or other content. 7 | 8 | Please follow best practices by previewing changes locally. 9 | 10 | 1. Make sure that ruby and bundler are installed, following the 11 | 'Requirements' section of [GitHub's documentation][2]. 12 | 13 | 2. Clone the repository and switch to the `docs/` directory 14 | 15 | cd BioC2020/docs 16 | 17 | 3. Install or update bundler to install the ruby pre-requisities. 18 | 19 | gem install --user-install bundler # this will require to export the PATH to run the other commands 20 | gem install bundler # needs sudo 21 | 22 | 4. Install ruby pre-requisites. 23 | 24 | bundle config set path 'vendor/bundle' # once only, use instead of the --path flag 25 | bundle install --path vendor/bundle # once only; references Gemfile 26 | # If the installer complains, add the suggested $PATH_TO_RUBY/bin 27 | # $HOME/.gem/ruby/2.3.0/bin/bundle 28 | # directory to your ~/.bash_profile or ~/.bashrc or similar. 29 | 30 | 5. Execute the jekyll server 31 | 32 | bundle exec jekyll serve 33 | 34 | and view the results at https://localhost:4000 35 | 36 | [1]: https://bioconductor.github.io/BioC2020 37 | [2]: https://help.github.com/articles/setting-up-your-github-pages-site-locally-with-jekyll/#requirements 38 | -------------------------------------------------------------------------------- /docs/sponsor.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | {% include header.md %} 6 | 7 | ## Sponsor Opportunities 8 | 9 | > Interested in sponsoring this conference?
10 | Please contact 11 | 12 | **Your sponsorship will help increase diversity and representation at Bioconductor 2020** by: 13 | 14 | - Funding travel scholarships for students and postdoctoral fellows. 15 | - Providing caregiver awards to assist in childcare or eldercare costs (new in 2020). 16 | - Offering student diversity scholarships to increase participation of underrepresented minorities (new in 2020). 17 | - Keeping registration costs affordable for academic participants. 18 | 19 | Three levels of sponsorship are available. Sponsors of all levels may present a poster highlighting the scientific interests of their organization in the poster sessions. 20 | 21 | **Platinum: $10,000 USD** 22 | 23 | - Poster session will be named after these donors. 24 | - Highest recognition, using your logo, in the online and print promotional and scheduling material. 25 | - Two invitations to attend the speaker dinner. 26 | - Up to 8 free registrations. 27 | - A thank-you tweet including your preferred Twitter handle. 28 | - A table during the poster session and social hours. 29 | 30 | **Gold: $5,000 USD** 31 | 32 | - Top recognition, using your logo, in the online and print conference promotional and scheduling material. 33 | - Up to 5 free registrations. 34 | - A thank-you tweet including your preferred Twitter handle. 35 | - A table during the poster session and social hours. 36 | 37 | **Silver: $1,000 USD** 38 | 39 | - Sponsor names will be listed in the online and print promotional and scheduling material. 40 | - Academic discount on 2 registrations. 41 | - A thank-you tweet including your preferred Twitter handle. 42 | 43 | *** 44 | 45 | ## Approximate conference demographics 46 | 47 | - 150+ participants from the global bioinformatics community. 48 | 49 | - Academic (50%), corporate (e.g., pharmaceutical; 30%); 50 | not-for-profit (e.g., Cancer Center; 15%), and government (5%) 51 | participants. 52 | 53 | - Lab / group leaders (10%), postdoctoral researchers (40%), 54 | bioinformatics core staff (20%), and graduate students (30%). 55 | 56 | - PhD (60%), MS (20%), and other degrees. 57 | 58 | - Thought leaders contributing to leading-edge methodological 59 | development, hands-on practitioners incorporating _R_ / 60 | _Bioconductor_ into robust work flows, and researchers developing 61 | bespoke solutions. -------------------------------------------------------------------------------- /docs/call-for-abstracts.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | {% include header.md %} 6 | 7 | 14 | ## Call for submissions to F1000Research 15 | 16 | Following on from previous years, we are inviting conference attendees to contribute articles on Bioconductor workflows or packages to the Bioconductor gateway on F1000Research ([Article Processing Charges](https://f1000research.com/for-authors/article-processing-charges) apply). This is a great opportunity to get credit for your work and increase its visibility and impact. We are also welcoming posters and slides from the conference this year to be hosted on the gateway (Free). [https://f1000research.com/gateways/bioconductor/about-this-gateway](https://f1000research.com/gateways/bioconductor/about-this-gateway) 17 | 18 | ## Key Dates 19 | 20 | | Date | What | 21 | | -------- | -------------------------------------- | 22 | | July 16 | Deadline for posters and for [Birds of a Feather](https://support.bioconductor.org/p/132033/) meeting proposals | 23 | | July 16 | Notification of decision for posters | 24 | | July 16 | Deadline for [workshop](./workshops.md) modifications | 25 | | July 16 | Deadline for [scholarships](./scholarships.md) and [caregiver](./caregiver-awards.md) awards | 26 | | July 20 | Notification of decision for awards | 27 | 28 | -------------------------------------------------------------------------------- /docs/schedule-day-three.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | schedule: 4 | - time: 8:00-8:55am 5 | type: Talk 6 | speaker: 7 | title: "Presentation of the BioC Commuity Advisory Board and BioC Awards Ceremony" 8 | url: 9 | - time: 9:00-9:55am 10 | type: Keynote 11 | speaker: Corrie Painter 12 | title: 13 | url: 14 | - time: 10:00-10:55am 15 | type: Talk 16 | speaker: 17 | title: "CDSB community Meeting" 18 | url: 19 | - time: 11:00-11:55am 20 | type: Workshop 21 | speaker: Marcel Ramos 22 | title: "200: MultiAssayExperiment and curatedTCGAData Bioconductor 2020 Workshop" 23 | url: https://github.com/waldronlab/MultiAssayWorkshop 24 | - time: 12:00-12:55pm 25 | type: Break 26 | speaker: Lunch, Posters, BoF 27 | title: 28 | url: 29 | - time: 1:00-1:55pm 30 | type: Workshop 31 | speaker: Aedin Culhane 32 | title: "200: A introduction to principal component analysis" 33 | url: https://github.com/aedin/PCAworkshop 34 | - time: 2:00-2:55pm 35 | type: Keynote 36 | speaker: Fei Chen 37 | title: 38 | url: 39 | - time: 3:00-3:10pm 40 | type: Talk 41 | speaker: Lukas M. Weber 42 | title: "Unsupervised analysis of transcriptome-scale spatial gene expression data in the human frontal cortex" 43 | url: 44 | - time: 3:10-3:20pm 45 | type: Talk 46 | speaker: Dario Righelli 47 | title: VisiumExperiment an S4 class for 10x Visium Spatial Gene Expression 48 | url: 49 | - time: 3:20-3:30pm 50 | type: Talk 51 | speaker: Lambda Lu 52 | title: A comparison of spatial transcriptomics methods 53 | url: 54 | - time: 3:30-3:40pm 55 | type: Talk 56 | speaker: Ellis Patrick 57 | title: "Spatial analysis of in situ cytometry data" 58 | url: 59 | - time: 3:40-3:55pm 60 | type: "Q&A session" 61 | speaker: "Q&A session" 62 | title: 63 | url: 64 | - time: 4:00-4:55pm 65 | type: Workshop 66 | speaker: Petr Smirnov, Arvind Mer, Christopher Eeles 67 | title: "200: A workshop on discovering biomarkers from high throughput response screens" 68 | url: https://github.com/bhklab/bioc2020workshop 69 | - time: 5:00-5:55pm 70 | type: Workshop 71 | speaker: Qian Liu 72 | title: "500: Bioconductor toolchain for usage and development of reproducible bioinformatics pipelines in CWL" 73 | url: https://github.com/Liubuntu/Bioc2020RCWL 74 | --- 75 | 76 | {% include header.md %} 77 | 78 | # Day 3: Wednesday, July 29, 2020 79 | 80 | All time is US Eastern Time. All sessions include Q&A time. 81 | 82 | {% for s in page.schedule %} 83 | 84 | {{ s.time }} | {% if s.type == "Keynote" %} **{{ s.type }}**, {{ s.speaker }} {% elsif s.type == "Talk" %} {{ s.type }}, {{ s.speaker }}, {{ s.title }} {% elsif s.type == "Q&A session" or s.type == "Break" %} {{ s.speaker }} {% elsif s.type == "Workshop" %} {{ s.type }}, {{ s.speaker }}, [{{ s.title }}]({{ s.url }}) {% endif %} 85 | 86 | {% endfor %} 87 | 88 | -------------------------------------------------------------------------------- /docs/schedule-day-four.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | schedule: 4 | - time: 8:00-8:55am 5 | type: Workshop 6 | speaker: Peter F. Hickey 7 | title: "500: Effectively Using the DelayedArray Framework to Support the Analysis of Large Datasets" 8 | url: https://github.com/PeteHaitch/BioC2020_DelayedArray_workshop 9 | - time: 9:00-9:55am 10 | type: Workshop 11 | speaker: Sehyun Oh, Levi Waldron 12 | title: "100: Cloud-based Genomics using Terra/AnVIL" 13 | url: https://github.com/waldronlab/AnVILWorkshop 14 | - time: 10:00-10:55am 15 | type: Workshop 16 | speaker: Mikhail Dozmorov 17 | title: "500: Detection of Differentially Interacting Chromatin Regions From Multiple Hi-C Datasets" 18 | url: https://github.com/mdozmorov/HiCcompareWorkshop 19 | - time: 11:00-11:55am 20 | type: Workshop 21 | speaker: Kayla Interdonato 22 | title: "500: Material on how to create and submit a package to Bioconductor" 23 | url: https://github.com/Kayla-Morrell/CreateAPackage 24 | - time: 12:00-12:55pm 25 | type: Break 26 | speaker: Lunch, Posters, BoF 27 | title: 28 | url: 29 | - time: 2:00-2:55pm 30 | type: Keynote 31 | speaker: X Shirley Liu 32 | title: "Computational modeling of protein degradation in tumors" 33 | url: 34 | - time: 3:00-3:10pm 35 | type: Talk 36 | speaker: Anthony Mammoliti 37 | title: "ORCESTRA: a platform for orchestrating and sharing high-throughput pharmacogenomic analyses" 38 | url: 39 | - time: 3:10-3:20pm 40 | type: Talk 41 | speaker: Shraddha Pai 42 | title: "netDx: Building interpretable patient classifiers by multi-omic data integration and patient similarity networks" 43 | url: 44 | - time: 3:20-3:30pm 45 | type: Talk 46 | speaker: Gabriel Odom 47 | title: "A Global Test for Integrative Pathway Analysis of Multi-omics Data" 48 | url: 49 | - time: 3:30-3:40pm 50 | type: Talk 51 | speaker: Ruth Schmidt 52 | title: "Visualization of multi-omics data in microbiome research" 53 | url: 54 | - time: 3:40-3:55pm 55 | type: "Q&A session" 56 | speaker: "Q&A session" 57 | title: 58 | url: 59 | - time: 4:00-4:55pm 60 | type: Workshop 61 | speaker: Anthony Federico 62 | title: "500: Efficient, Scalable, and Reproducible Enrichment Workflows" 63 | url: https://github.com/montilab/hypeR-workshop 64 | - time: 5:00-5:55pm 65 | type: Workshop 66 | speaker: Michael Love 67 | title: "200: Importing alevin scRNA-seq counts into R/Bioconductor" 68 | url: https://github.com/mikelove/alevin2bioc 69 | --- 70 | 71 | {% include header.md %} 72 | 73 | # Day 4: Thursday, July 30, 2020 74 | 75 | All time is US Eastern Time. All sessions include Q&A time. 76 | 77 | {% for s in page.schedule %} 78 | 79 | {{ s.time }} | {% if s.type == "Keynote" %} **{{ s.type }}**, {{ s.speaker }}, {{ s.title }} {% elsif s.type == "Talk" %} {{ s.type }}, {{ s.speaker }}, {{ s.title }} {% elsif s.type == "Q&A session" or s.type == "Break" %} {{ s.speaker }} {% elsif s.type == "Workshop" %} {{ s.type }}, {{ s.speaker }}, [{{ s.title }}]({{ s.url }}) {% endif %} 80 | 81 | {% endfor %} 82 | 83 | -------------------------------------------------------------------------------- /docs/schedule-day-five.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | schedule: 4 | - time: 9:00-9:55am 5 | type: Keynote 6 | speaker: Caroline Uhler 7 | title: "Multi-Domain Data Integration: From Observations to Mechanistic Insights" 8 | url: 9 | - time: 10:00-10:10am 10 | type: Talk 11 | speaker: Emma Jablonski 12 | title: Reproducible workflows with the RENKU platform 13 | - time: 10:10-10:20am 14 | type: Talk 15 | speaker: Shian Su 16 | title: "Analysing DNA Methylation Using Nanopore Long Read Sequencing" 17 | url: 18 | - time: 10:20-10:30am 19 | type: Talk 20 | speaker: Hena R Ramay 21 | title: "FemMicro16S: Advancing the science of women’s health through open data sharing" 22 | url: 23 | - time: 10:30-10:40am 24 | type: Talk 25 | speaker: Jayaram Kancherla 26 | title: "Quickly compose custom interactive genomic visualization apps in R/Bioc with epiviz components" 27 | url: 28 | - time: 10:40-10:55am 29 | type: "Q&A session" 30 | speaker: "Q&A session" 31 | title: 32 | url: 33 | - time: 11:00-11:55am 34 | type: Workshop 35 | speaker: Kelly Street, Koen Van den Berge 36 | title: "500: Trajectory inference across conditions: differential expression and differential progression" 37 | url: https://github.com/kstreet13/bioc2020trajectories 38 | - time: 12:00-12:55pm 39 | type: Break 40 | speaker: Lunch, Posters, BoF 41 | title: 42 | url: 43 | - time: 2:00-2:55pm 44 | type: Keynote 45 | speaker: Aaron Lun 46 | title: "Making the infrastructure sausage: tales of Bioconductor package development" 47 | url: 48 | - time: 3:00-3:10pm 49 | type: Talk 50 | speaker: Charlotte Soneson 51 | title: "Preprocessing choices affect RNA velocity results for droplet scRNA-seq data" 52 | url: 53 | - time: 3:10-3:20pm 54 | type: Talk 55 | speaker: Davide Risso 56 | title: "Bench pressing differential abundance methods for microbiome data" 57 | url: 58 | - time: 3:20-3:30pm 59 | type: Talk 60 | speaker: Anthony Sonrel 61 | title: "Bench pressing performant single cell RNA-seq preprocessing tools through pipeComp; a general framework for the evaluation of computational pipelines" 62 | url: 63 | - time: 3:30-3:40pm 64 | type: Talk 65 | speaker: Stephanie Hicks 66 | title: "Bench pressing single-cell RNA-sequencing imputation methods" 67 | url: 68 | - time: 3:40-3:55pm 69 | type: "Q&A session" 70 | speaker: "Q&A session" 71 | title: 72 | url: 73 | - time: 4:00-4:25pm 74 | type: Talk 75 | speaker: 76 | title: "Closing remarks" 77 | url: 78 | --- 79 | 80 | {% include header.md %} 81 | 82 | # Day 5: Friday, July 31, 2020 83 | 84 | All time is US Eastern Time. All sessions include Q&A time. 85 | 86 | {% for s in page.schedule %} 87 | 88 | {{ s.time }} | {% if s.type == "Keynote" %} **{{ s.type }}**, {{ s.speaker }}, {{ s.title }} {% elsif s.type == "Talk" %} {{ s.type }}, {{ s.speaker }}, {{ s.title }} {% elsif s.type == "Q&A session" or s.type == "Break" %} {{ s.speaker }} {% elsif s.type == "Workshop" %} {{ s.type }}, {{ s.speaker }}, [{{ s.title }}]({{ s.url }}) {% endif %} 89 | 90 | {% endfor %} 91 | 92 | -------------------------------------------------------------------------------- /docs/schedule-day-one.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | schedule: 4 | - time: 8:30-9:00am 5 | type: Talk 6 | speaker: Martin Morgan 7 | title: Introduction & Welcome 8 | url: 9 | - time: 9:00-9:55am 10 | type: Keynote 11 | speaker: Rafael Irizarry 12 | title: Probabilistic Gene Expression Signatures for Single Cell RNA-seq Data 13 | url: 14 | - time: 10:00-10:10am 15 | type: Talk 16 | speaker: Yi Wang 17 | title: Co-expression analysis is biased by a mean-correlation relationship 18 | - time: 10:10-10:20am 19 | type: Talk 20 | speaker: Ting Huang 21 | title: "MSstatsTMT: Statistical detection of differentially abundant proteins in experiments with isobaric labeling and multiple mixtures" 22 | url: 23 | - time: 10:20-10:30am 24 | type: Talk 25 | speaker: Simina M. Boca 26 | title: Using the swfdr package to estimate false discovery rates conditional on covariates 27 | url: 28 | - time: 10:30-10:40am 29 | type: Talk 30 | speaker: Philippe Boileau 31 | title: Exploring High-Dimensional Biological Data with Sparse Contrastive Principal Component Analysis 32 | url: 33 | - time: 10:40-10:55am 34 | type: "Q&A session" 35 | speaker: 36 | title: 37 | url: 38 | - time: 11:00-11:55am 39 | type: Workshop 40 | speaker: Levi Waldron, Sean Davis 41 | title: "100: Public data resources in Bioconductor" 42 | url: https://github.com/waldronlab/PublicDataResources 43 | - time: 12:00-12:55pm 44 | type: Break 45 | speaker: Lunch, Posters, BoF 46 | title: 47 | url: 48 | - time: 1:00-1:55pm 49 | type: Workshop 50 | speaker: Chloe Mirzayi 51 | title: "100: Epidemiology for Bioinformaticians Workshop" 52 | url: https://github.com/cmirzayi/epiforbioworkshop 53 | - time: 2:00-2:55pm 54 | type: Workshop 55 | speaker: John Lawson 56 | title: "100: Annotating inter-sample DNA methylation and ATAC-seq variation with COCOA" 57 | url: https://github.com/databio/cocoa_workshop_bioc2020 58 | - time: 3:00-3:55pm 59 | type: Workshop 60 | speaker: Leonardo Collado-Torres 61 | title: "100: Human RNA-seq data from recount2 and related packages" 62 | url: https://github.com/LieberInstitute/recountWorkshop2020/ 63 | - time: 4:00-4:55pm 64 | type: Workshop 65 | speaker: James W. MacDonald 66 | title: "100: Introduction to Bioconductor Annotation Resources" 67 | url: https://github.com/jmacdon/Bioc2020Anno 68 | - time: 5:00-5:55pm 69 | type: Workshop 70 | speaker: Stefano Mangiola 71 | title: "100: A Tidy Transcriptomics introduction to RNA-Seq analyses" 72 | url: https://github.com/stemangiola/bioc_2020_tidytranscriptomics 73 | --- 74 | 75 | {% include header.md %} 76 | 77 | # Day 1: Monday, July 27, 2020 78 | 79 | All time is US Eastern Time. All sessions include Q&A time. 80 | 81 | {% for s in page.schedule %} 82 | 83 | {{ s.time }} | {% if s.type == "Keynote" %} **{{ s.type }}**, {{ s.speaker }} {% elsif s.type == "Talk" %} {{ s.type }}, {{ s.speaker }}, {{ s.title }} {% elsif s.type == "Q&A session" or s.type == "Break" %} {{ s.speaker }} {% elsif s.type == "Workshop" %} {{ s.type }}, {{ s.speaker }}, [{{ s.title }}]({{ s.url }}) {% endif %} 84 | 85 | {% endfor %} 86 | 87 | -------------------------------------------------------------------------------- /docs/schedule-day-two.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | schedule: 4 | - time: 8:00-8:55am 5 | type: Talk 6 | speaker: 7 | title: Open breakfast meeting 8 | url: 9 | - time: 9:00-9:55am 10 | type: Workshop 11 | speaker: Ludwig Geistlinger 12 | title: "200: Functional enrichment analysis of high-throughput omics data" 13 | url: https://github.com/waldronlab/enrichOmics 14 | - time: 10:00-10:55am 15 | type: Workshop 16 | speaker: Haibo Liu 17 | title: "200: Best practices for ATAC-seq QC and data analysis" 18 | url: https://github.com/haibol2016/ATACseqQCWorkshop 19 | - time: 11:00-11:55am 20 | type: Workshop 21 | speaker: Ludwig Geistlinger, Marcel Ramos, Sehyun Oh 22 | title: "200: Copy number variation analysis with Bioconductor" 23 | url: https://github.com/waldronlab/CNVWorkshop 24 | - time: 12:00-12:55pm 25 | type: Break 26 | speaker: Birds of a Feather Talks, Talk with the BioC Core Team 27 | title: 28 | url: 29 | - time: 1:00-1:55pm 30 | type: Workshop 31 | speaker: Charlotte Soneson, Aaron Lun, Kevin Rue-Albrecht, Federico Marini 32 | title: "200: Interactive Visualization of SummarizedExperiment Objects with iSEE" 33 | url: https://github.com/iSEE/iSEEWorkshop2020 34 | - time: 2:00-2:55pm 35 | type: Keynote 36 | speaker: Kylie Bemis 37 | title: 38 | url: 39 | - time: 3:00-3:10pm 40 | type: Talk 41 | speaker: Daniel Bunis 42 | title: "dittoSeq: A universal user friendly single-cell and bulk RNA sequencing visualization toolkit" 43 | url: 44 | - time: 3:10-3:20pm 45 | type: Talk 46 | speaker: Koen Van den Berge 47 | title: Interpretation of single-cell RNA-seq trajectories using differential expression and differential progression analysis 48 | url: 49 | - time: 3:20-3:30pm 50 | type: Talk 51 | speaker: F. William Townes 52 | title: Dimension reduction for massive single-cell datasets 53 | url: 54 | - time: 3:30-3:40pm 55 | type: Talk 56 | speaker: Lauren Hsu 57 | title: "corral: A simple and fast approach for dimensionality reduction and data alignment in single-cell data" 58 | url: 59 | - time: 3:40-3:55pm 60 | type: "Q&A session" 61 | speaker: "Q&A session" 62 | title: 63 | url: 64 | - time: 4:00-4:55pm 65 | type: Workshop 66 | speaker: Lihua Julie Zhu, Jianhong Ou 67 | title: "200: CRISPRseek for design target-specific gRNAs for the CRISPR genome editing system including base editor and prime editor" 68 | url: https://github.com/LihuaJulieZhu/CRISPRseekGUIDEseqBioc2020Workshop/ 69 | - time: 5:00-5:55pm 70 | type: Workshop 71 | speaker: Kai Hu, Jianhong Ou 72 | title: "200: Integrated ChIP-seq Data Analysis Workshop" 73 | url: https://github.com/hukai916/IntegratedChIPseqWorkshop 74 | --- 75 | 76 | {% include header.md %} 77 | 78 | # Day 2: Tuesday, July 28, 2020 79 | 80 | All time is US Eastern Time. All sessions include Q&A time. 81 | 82 | {% for s in page.schedule %} 83 | 84 | {{ s.time }} | {% if s.type == "Keynote" %} **{{ s.type }}**, {{ s.speaker }} {% elsif s.type == "Talk" %} {{ s.type }}, {{ s.speaker }}, {{ s.title }} {% elsif s.type == "Q&A session" or s.type == "Break" %} {{ s.speaker }} {% elsif s.type == "Workshop" %} {{ s.type }}, {{ s.speaker }}, [{{ s.title }}]({{ s.url }}) {% endif %} 85 | 86 | {% endfor %} 87 | 88 | -------------------------------------------------------------------------------- /docs/travel-accommodations.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | {% include header.md %} 6 | 7 | ## Venue 8 | 9 | The conference will take place in two venues: 10 | 11 | - **Day 1** (July 29): 12 | Simmons University (300 The Fenway, Boston, MA) 13 | - **Day 2-3** (July 30-31): 14 | Joseph B. Martin Conference Center at Harvard Medical School 15 | (77 Avenue Louis Pasteur, Boston, MA 02115) 16 | 17 | ## Accomodations 18 | 19 | The conference venues are in the Longwood Medical/Fenway Park part of Boston and are most easily accessible from the Fenway, Brookline and Back Bay neighborhoods. 20 | 21 | [Information about nearby hotels.](assets/Hotels.near.DFCI.pdf) 22 | 23 | Childcare options are [available](https://rebrand.ly/bioc2020childcare) 24 | 25 | 34 | 35 | ### Simmons University 36 | 37 | Community Day will take place in the Main Building of Simmons University located at 300 The Fenway. 38 | 39 | **Local Transportation to Simmons.** 40 | 41 | - **Subway** - The subway costs $2.25. The stops closest to Simmons University are the Green E line Museum of Fine Arts. 42 | - **Bus** - The bus costs $1.70. Route 8 and 47 run past Simmons University. 43 | - **Parking** - [https://www.simmons.edu/maps-directions/parking](https://www.simmons.edu/maps-directions/parking) 44 | 45 | **Getting around Simmons University.** 46 | 47 | **Paresky Conference Center**: If you enter from 300 The Fenway, take the stairs up the third floor and take a left down the hallway to the end, the conference center is at the end of the hall. There is also an elevator on the first floor down the hallway to the left. Once you come off the elevator, take right, the conference center is at the end of the hall. If you enter from the Simmons quad, pass through the Student Center and take the hallway next to the coffee stand. From there, take the stairs to the third floor, then take a left down the hall to the end, or, take a right down the hall to the elevator and take it to the third floor. 48 | 49 | ### Joseph B Martin Conference Center 50 | 51 | **Arrival at Martin Conference Center.** 52 | 53 | The entrance to the Martin Center is located at 77 Avenue Louis Pasteur. The auditorium is located on the first floor. 54 | 55 | **Local transportation to the Martin Center.** 56 | 57 | - **Subway** - The subway costs $2.25. The stops closest to Simmons University are the Green E line Museum of Fine Arts. 58 | - **Bus** - The bus costs $1.70. Route 8 and 47 run past the conference center. 59 | 60 | ## Accessibility 61 | 62 | **Simmons University** 63 | 64 | There is a mother’s room on the second floor of the Main Building (W206A). Simmons University has two elevators that accommodate all three floors of the Main building. The handicapped ramp to the Main Building is via the quad. 65 | 66 | **Joseph B Martin Conference Center** 67 | 68 | There is a mother’s room in the building adjacent to the Martin Center and a short walk from the conference space. The Martin Center does have elevators to accommodate all three floors of the building. 69 | 70 | Maps will be provided with locations of these services. 71 | 72 | If you have a disability and require assistance, or would like more information, please note this on the registration form or by contacting Erica Feick at 617-632-5323. 73 | 74 | ## Arriving by air 75 | 76 | The main airport that serves Boston is [Boston Logan International Airport](http://www.massport.com/logan-airport). 77 | 78 | **Arriving to the Longwood Area from Boston Logan Airport.** 79 | 80 | - **Taxi** - Taxis from BOS cost between $30-50 to the Longwood Area. 81 | - **Uber and Lyft** - Pickup area varies per terminal but signage is available. 82 | - **Public Transport** – There is a free bus to Back Bay from the airport. From there you can take a short Uber/Lyft ride or transfer to the subway. (Please note to take this bus back to the airport the cost is $3.00). 83 | 84 | ## Driving and parking 85 | 86 | - [Directions to Simmons University](https://www.simmons.edu/maps-directions) 87 | - [Directions to the Martin Conference Center](https://theconfcenter.hms.harvard.edu/pdf/hmscc-directions.pdf) 88 | 89 | Parking is available at Simmons for an hourly rate. The entrance is on Avenue Louis Pasteur. 90 | 91 | Parking is not available at the Martin Conference Center, but you can park at Simmons, or the following local garages: 92 | 93 | - Center for Life Sciences Building, 3 Blackfan Circle (directly 94 | behind the Martin Conference Center), rate up to $36/day 95 | - 375 Longwood Ave Garage, rates up to $29/day 96 | - 333 Longwood Ave Garage, rates up to $35/day 97 | 98 | ## Call for Travel Awards 99 | 100 | - [Bioc2020 travel award application](https://docs.google.com/forms/d/e/1FAIpQLSdr__Ox7kWpTV0lwjJ7skD617HcWFQmPrJqyMpVN27darvZQg/viewform) 101 | 102 | -------------------------------------------------------------------------------- /docs/workshop-syllabus.md: -------------------------------------------------------------------------------- 1 | # Insert Workshop Title 2 | 3 | # Instructor(s) name(s) and contact information 4 | 5 | Provide names and contact information for all instructors. 6 | 7 | # Workshop Description 8 | 9 | Along with the topic of your workshop, include how students can expect 10 | to spend their time. For the description may also include information 11 | about what type of workshop it is (e.g. instructor-led live demo, lab, 12 | lecture + lab, etc.). Instructors are strongly recommended to provide 13 | completely worked examples for lab sessions, and a set of stand-alone 14 | notes that can be read and understood outside of the workshop. 15 | 16 | ## Pre-requisites 17 | 18 | List any workshop prerequisites, for example: 19 | 20 | * Basic knowledge of R syntax 21 | * Familiarity with the GenomicRanges class 22 | * Familiarity with xyz vignette (provide link) 23 | 24 | List relevant background reading for the workshop, including any 25 | theoretical background you expect students to have. 26 | 27 | * List any textbooks, papers, or other reading that students should be 28 | familiar with. Include direct links where possible. 29 | 30 | ## Workshop Participation 31 | 32 | Describe how students will be expected to participate in the workshop. 33 | 34 | ## _R_ / _Bioconductor_ packages used 35 | 36 | List any _R_ / _Bioconductor_ packages that will be explicitly covered. 37 | 38 | ## Time outline 39 | 40 | An example for a 45-minute workshop: 41 | 42 | | Activity | Time | 43 | |------------------------------|------| 44 | | Packages | 15m | 45 | | Package Development | 15m | 46 | | Contributing to Bioconductor | 5m | 47 | | Best Practices | 10m | 48 | 49 | # Workshop goals and objectives 50 | 51 | List "big picture" student-centered workshop goals and learning 52 | objectives. Learning goals and objectives are related, but not the 53 | same thing. These goals and objectives will help some people to decide 54 | whether to attend the conference for training purposes, so please make 55 | these as precise and accurate as possible. 56 | 57 | *Learning goals* are high-level descriptions of what 58 | participants will learn and be able to do after the workshop is 59 | over. *Learning objectives*, on the other hand, describe in very 60 | specific and measurable terms specific skills or knowledge 61 | attained. The [Bloom's Taxonomy](#bloom) may be a useful framework 62 | for defining and describing your goals and objectives, although there 63 | are others. 64 | 65 | ## Learning goals 66 | 67 | Some examples: 68 | 69 | * describe how to... 70 | * identify methods for... 71 | * understand the difference between... 72 | 73 | ## Learning objectives 74 | 75 | * analyze xyz data to produce... 76 | * create xyz plots 77 | * evaluate xyz data for artifacts 78 | 79 | ### A note about learning goals and objectives (#bloom) 80 | 81 | While not a new or modern system for thinking about learning, 82 | [Bloom's taxonomy][1] is one useful framework for understanding the 83 | cognitive processes involved in learning. From lowest to highest 84 | cognitive requirements: 85 | 86 | 1. Knowledge: Learners must be able to recall or remember the 87 | information. 88 | 2. Comprehension: Learners must be able to understand the information. 89 | 3. Application: Learners must be able to use the information they have 90 | learned at the same or different contexts. 91 | 4. Analysis: Learners must be able to analyze the information, by 92 | identifying its different components. 93 | 5. Synthesis: Learners must be able to create something new using 94 | different chunks of the information they have already mastered. 95 | 6. Evaluation: Learners must be able to present opinions, justify 96 | decisions, and make judgments about the information presented, 97 | based on previously acquired knowledge. 98 | 99 | To use Bloom's taxonomy, consider the following sets of verbs and 100 | descriptions for learning objectives: 101 | 102 | 1. Remember: Memorize, show, pick, spell, list, quote, recall, repeat, 103 | catalogue, cite, state, relate, record, name. 104 | 2. Understand: Explain, restate, alter, outline, discuss, expand, 105 | identify, locate, report, express, recognize, discuss, qualify, 106 | covert, review, infer. 107 | 3. Apply: Translate, interpret, explain, practice, illustrate, 108 | operate, demonstrate, dramatize, sketch, put into action, complete, 109 | model, utilize, experiment, schedule, use. 110 | 4. Analyze: Distinguish, differentiate, separate, take apart, 111 | appraise, calculate, criticize, compare, contrast, examine, test, 112 | relate, search, classify, experiment. 113 | 5. Evaluate: Decide, appraise, revise, score, recommend, select, 114 | measure, argue, value, estimate, choose, discuss, rate, assess, 115 | think. 116 | 6. Create: Compose, plan, propose, produce, predict, design, assemble, 117 | prepare, formulate, organize, manage, construct, generate, imagine, 118 | set-up. 119 | 120 | [1]: https://cft.vanderbilt.edu/guides-sub-pages/blooms-taxonomy/ "Bloom's Taxonomy" 121 | -------------------------------------------------------------------------------- /docs/instructions-for-presenters.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | {% include header.md %} 6 | 7 | ## General information 8 | 9 | The [BioC2020 conference](https://bioc2020.pathable.co/) sessions will be live-streamed. Optionally, pre-recorded sessions may be used. [Google Chrome browser](https://www.google.com/chrome/) is recommended. 10 | 11 | - The conference is organized in 1-hour blocks, which are 55 minutes + 5-minutes break. All sessions will be moderated. 12 | - Keynote talks include 55 minutes for talk + discussion (~40 minutes talk, 15 minutes discussion) 13 | - Contributed talk sessions include 4 talks x 10 minutes, 4 consecutive with a brief introduction before each one, followed by 15 minutes discussion 14 | - Workshop sessions include 55 minutes for a live 20-30 min demo session followed by the Q&A time or other workshop-relevant activities 15 | 16 | - Bioc2020 conference web site: [https://bioc2020.pathable.co/](https://bioc2020.pathable.co/) 17 | - [Conference Direct](https://conferencedirect.com/) is the platform hosting the BioC2020 conference 18 | - [Pathable](https://pathable.com/), which uses [Zoom](https://zoom.us/) as a backend will be used for videoconferencing. [Bioc2020-themed virtual background](https://drive.google.com/drive/folders/1hdZTD-lgsx1u9V0Ln3hBu-3wYuEbGbwA) is recommended. 19 | 20 | - All presenters (keynote and contributed talk speakers, workshop and poster presenters) must register at the [BioC 2020 Invited Guest Registration form](https://docs.google.com/forms/d/e/1FAIpQLSe5gIWOJnyPcCaObhqbaht_64mf8SabZ_K8Y68EozXqX83clw/viewform) (select “Invited speaker”) 21 | 22 | - Presenters are encouraged to submit their slides, posters (free), and workshop-based workflow articles ([APCs](https://f1000research.com/for-authors/article-processing-charges) apply) to the [F1000Research Bioconductor gateway](https://f1000research.com/gateways/bioconductor/about-this-gateway) for more information. 23 | 24 | - Sessions may be pre-recorded, see [Pre-Recorded Video Information](https://drive.google.com/file/d/1u8V9sHL9pRKoPUAsIky3d4s_EfVOSSZQ/view?usp=sharing) for more details 25 | 26 | - Workshop instructions are available at [https://github.com/seandavi/BuildABiocWorkshop2020](https://github.com/seandavi/BuildABiocWorkshop2020) 27 | 28 | - Join the [#bioc2020](https://community-bioc.slack.com/archives/CLAEUFVAA) and [#bioc2020-workshops](https://community-bioc.slack.com/archives/C015QR5FCGN) Slack channels for all conference-related questions 29 | 30 | ## Poster session information 31 | 32 | Poster presenters need to submit their poster to the [Bioconductor BioC2020 conference gateway on F1000Research](https://f1000research.com/gateways/bioconductor/about-this-gateway) before the deadline (July 20th). The submission is free of charge, and published posters on F1000Research will receive a digital object identifier (DOI). For more details, please refer to the [Poster & Slides Guidelines](https://f1000research.com/gateways/bioconductor/for-authors/posters-and-slides-guidelines). There are no formatting requirements for posters (feel free to be creative); however, for those who would like to use it, a [poster template](https://drive.google.com/file/d/1N3pDnixeVwRFrjQrSJL9eziXq4RpcfaT/view?usp=sharing) is available. Inclusion of the Bioconductor logo and/or #BioC2020 is encouraged. 33 | 34 | Posters will be tweeted by [@Bioconductor](https://twitter.com/Bioconductor) as they are received, so submit early to maximize your visibility. If you tweet and promote your own poster, please include the hashtag #BioC2020. 35 | 36 | The virtual poster session will occur in two sessions; 37 | 38 | - Wednesday 07/29 at 12:00-12:55pm ET 39 | - Friday 07/31 at 8:00-8:55am ET 40 | 41 | Please sign up to select your preferred poster session time using the ["Poster Session Sign-up" form](https://forms.gle/G38AUCFjNordAgc48). You may attend both sessions, but are only requested to present at 1 session. 42 | 43 | The virtual poster sessions will give poster presenters an opportunity to interact with interested participants just like a live poster session. A dedicated virtual meeting room will be assigned for each poster. These rooms can be accessed via web links posted on the ConferenceDirect website. Poster links will not be published on the public bioconductor website to limit viewers to conference attendees. 44 | 45 | The posters will be available for public preview before the poster session at F1000. Conference attendees can browse the posters there to determine which ones to visit during the poster session. We encourage all conference attendees to browse the list of posters beforehand, and then participate in the poster session by visiting the virtual rooms of the poster presenters. This provides the key mechanism for exchange of ideas in small groups at the conference. 46 | 47 | During the poster sessions, presenters should be present in the virtual room for their poster during their entire time slot. Since our videoconferencing platform allows you to be in multiple rooms at once, if you're not occupied with interested visitors at your poster, you should feel free to visit other posters -- just remember to keep your own room open in a separate window and monitor it. When a visitor arrives at your poster, you should politely leave your other conversation to entertain your visitor, much like you would at a real poster session. 48 | 49 | ## Contact information 50 | 51 | * Contact Us: [workshop@bioconductor.org](mailto:workshop@bioconductor.org) 52 | * Technical Support for BioC2020: [virtual@conferencedirect.com](mailto:virtual@conferencedirect.com) 53 | -------------------------------------------------------------------------------- /docs/workshops.Rmd: -------------------------------------------------------------------------------- 1 | --- 2 | output: github_document 3 | --- 4 | 5 | ## Workshops 6 | 7 | Join the _Bioconductor_ [#bioc2020](https://community-bioc.slack.com/archives/CLAEUFVAA) 8 | and [#bioc2020-workshops](https://community-bioc.slack.com/archives/C015QR5FCGN) 9 | channels for up-to-date information. 10 | 11 | ```{r,eval=FALSE,echo=FALSE} 12 | # run this to create the workshops.md file 13 | rmarkdown::render("workshops.Rmd", 14 | rmarkdown::md_document( 15 | variant="gfm", preserve_yaml = FALSE 16 | ) 17 | ) 18 | writeLines(c( 19 | "--- 20 | layout: default 21 | --- 22 | 23 | {% include header.md %} 24 | ", 25 | 26 | readLines("workshops.md") 27 | ), 28 | con = file("workshops.md") 29 | ) 30 | ``` 31 | 32 | ```{r,results="hide",echo=FALSE,message=FALSE,warning=FALSE} 33 | .github <- "https://raw.githubusercontent.com" 34 | .dock_hub <- "https://hub.docker.com/repository/docker/" 35 | 36 | make_repo_table <- function(repos) { 37 | descs <- file.path(.github, repos, "master/DESCRIPTION") 38 | repo_url <- file.path("https://github.com", repos) 39 | dcfs <- lapply(descs, function(desc_url) { 40 | tryCatch({ 41 | read.dcf(url(desc_url)) 42 | }, error = function(e) conditionMessage(e) 43 | ) 44 | }) 45 | valid <- vapply(dcfs, function(x) is.matrix(x), logical(1L)) 46 | noDESC <- repos[!valid] 47 | msg <- paste0("Missing `DESCRIPTION`: ", paste0(noDESC, collapse = ", ")) 48 | noDESC <- if (!length(noDESC)) "" else msg 49 | dcfs <- dcfs[valid] 50 | annote <- dplyr::bind_rows( 51 | lapply(lapply(dcfs, as.data.frame), tibble) 52 | ) 53 | updf <- annote[, c("Title", "URL", "DockerImage")] 54 | docks <- lapply(strsplit(updf[["DockerImage"]], ":"), `[`, 1L) 55 | workshop <- paste0("[", updf[["Title"]], "]", "(", updf[["URL"]], ")") 56 | github <- paste0("[![GH](images/GitHub-Mark-32px.png)]", "(", repo_url[valid], ")") 57 | docker <- paste0("[![Docker](images/docker_icon.png)]", "(", .dock_hub, docks, ")") 58 | list( 59 | tibble(workshop, github, docker), 60 | noDESC 61 | ) 62 | } 63 | ``` 64 | 65 | ### 100 Level Workshops 66 | 67 | ```{r,echo=FALSE,message=FALSE,warning=FALSE} 68 | library(knitr) 69 | library(kableExtra) 70 | library(tibble) 71 | l100 <- c( 72 | "jmacdon/Bioc2020Anno", 73 | "stemangiola/bioc_2020_tidytranscriptomics", 74 | "waldronlab/PublicDataResources", 75 | "databio/cocoa_workshop_bioc2020", 76 | "LieberInstitute/recountWorkshop2020", 77 | "waldronlab/AnVILWorkshop", 78 | "cmirzayi/EpiForBioWorkshop2020" 79 | ) 80 | rtab <- make_repo_table(l100) 81 | knitr::kable(rtab[[1]], format = "markdown", 82 | col.names = c("Workshop", "Source", "Docker")) 83 | ``` 84 | 85 | ```{r, echo=FALSE,results="asis"} 86 | if (length(rtab[[2]])) 87 | cat( 88 | paste0("", rtab[[2]], "", sep = "\n") 89 | ) 90 | ``` 91 | 92 | ### 200 Level Workshops 93 | 94 | ```{r,echo=FALSE,message=FALSE,warning=FALSE} 95 | l200 <- c( 96 | "haibol2016/ATACseqQCWorkshop", 97 | "iSEE/iSEEWorkshop2020", 98 | "waldronlab/enrichOmics", 99 | "waldronlab/CNVWorkshop", 100 | "waldronlab/MultiAssayWorkshop", 101 | "LihuaJulieZhu/CRISPRseekGUIDEseqBioc2020Workshop/", 102 | "hukai916/IntegratedChIPseqWorkshop", 103 | "aedin/PCAworkshop", 104 | "bhklab/bioc2020workshop", 105 | # "broadinstitute/BioC2020Workshop_AMARETTO-Hub", 106 | "mikelove/alevin2bioc" 107 | ) 108 | rtab <- make_repo_table(l200) 109 | knitr::kable(rtab[[1]], align = "l", escape = FALSE, 110 | format = "markdown", col.names = c("Workshop", "Source", "Docker")) 111 | ``` 112 | 113 | ```{r, echo=FALSE,results="asis"} 114 | if (length(rtab[[2]])) 115 | cat( 116 | paste0("", rtab[[2]], "", sep = "\n") 117 | ) 118 | ``` 119 | 120 | ### 500 Level Workshops 121 | 122 | ```{r,echo=FALSE,message=FALSE,warning=FALSE} 123 | l500 <- c( 124 | "Kayla-Morrell/CreateAPackage", 125 | "Liubuntu/Bioc2020RCWL", 126 | "PeteHaitch/BioC2020_DelayedArray_workshop", 127 | "mdozmorov/HiCcompareWorkshop", 128 | "kstreet13/bioc2020trajectories", 129 | "montilab/hypeR-workshop" 130 | ) 131 | rtab <- make_repo_table(l500) 132 | knitr::kable(rtab[[1]], align = "l", escape = FALSE, 133 | format = "markdown", col.names = c("Workshop", "Source", "Docker")) 134 | ``` 135 | 136 | ```{r, echo=FALSE,results="asis"} 137 | if (length(rtab[[2]])) 138 | cat( 139 | paste0("", rtab[[2]], "", sep = "\n") 140 | ) 141 | ``` 142 | 143 | Workshops with preinstalled dependencies can be run locally using Docker. 144 | 145 | - `docker pull ` will pull the latest image for a given ``. 146 | - `docker run -e PASSWORD= -p 8787:8787 -d --rm ` will publish a container's port 8787 to the host (`-p`), run in the detached mode (`-d`), and cleanly remove the container when it is stopped (`--rm`). 147 | - Open [http://localhost:8787](http://localhost:8787) and login with username `rstudio` and password ``. 148 | - Run `browseVignettes(package = "")`. Click on one of the links, "HTML", "source", "R code". 149 | - In case of "`The requested page was not found`" error, add `help/` to the URL right after the hostname. This is a [known bug](https://github.com/rocker-org/rocker-versioned/issues/178). 150 | 151 | Advanced: Use `-v $(pwd):/home/rstudio` argument to map your local directory to the container. Use `-e DISABLE_AUTH=true`, if you want passwordless login to RStudio. On Windows, you may need to provide your localhost IP address like `http://191.163.92.108:8787/` - find it using `docker-machine ip default` in Docker's terminal. 152 | 153 | Example: 154 | 155 | ``` 156 | docker pull waldronlab/publicdataresources:latest 157 | docker run -e PASSWORD=bioconductor -p 8787:8787 -d --rm waldronlab/publicdataresources 158 | # Open http://localhost:8787 and login using rstudio/bioconductor credentials 159 | # Run browseVignettes(package = "PublicDataResources") 160 | # Open http://localhost:8787/help/library/PublicDataResources/doc/PublicDataResources.html 161 | docker ps -a # List all running containers 162 | docker stop # or, - Stop a container 163 | ``` 164 | 165 | Workshop packages were created using the 166 | [BuildABiocWorkshop2020](https://github.com/seandavi/BuildABiocWorkshop2020) 167 | template. 168 | 169 | *NOTE*. All workshops should include a valid `DESCRIPTION` file with the 170 | following fields: 171 | 172 | * `URL:` - the GitHub pages URL (`https://username.github.io/repository`) 173 | * `DockerImage:` - the Docker repository slug in lowercase with (optional) tag 174 | (`username/repository:tag`) 175 | -------------------------------------------------------------------------------- /docs/_layouts/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | {% seo %} 8 | 9 | 10 | 11 | 12 | 13 | 16 | 17 | 18 |
19 |
20 | 21 |

22 | 23 | Bioconductor 27 | 28 |

29 | 30 |

31 | Conference Home
32 | Registration
33 | Call for submissions
34 |
35 | 43 | - Schedule
44 | - Poster Titles
45 | - Workshops
46 | - Instructions for presenters
47 |
48 | Resources
49 | - Organizing committee
50 | 51 | 52 |
53 | Sponsor Opportunities
54 | 55 | Code of Conduct
56 | Past conferences
57 |

58 |
59 |

60 | Bioconductor2020 65 |

66 |

67 | Conference Sponsors 68 |

69 | 70 | Genentech 75 | 76 | 77 | Genentech 82 | 83 | 84 | Genentech 89 | 90 | 91 | isb-cgc 96 | 97 | 98 | F1000Research 103 | 104 | 105 | Maze Therapeutics 110 | 111 | 112 | StickerMule 117 | 118 | 187 |

188 | Bioconductor: https://bioconductor.org
189 | Bioc2020 sticker
190 | Hosted on GitHub Pages
191 | Theme by orderedlist 192 |

193 |
194 |
195 | 196 | {{ content }} 197 | 198 |
199 |
200 |
201 |
202 | 203 | 204 | {% if site.google_analytics %} 205 | 214 | {% endif %} 215 | 216 | 217 | -------------------------------------------------------------------------------- /docs/workshops_full.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | {% include header.md %} 6 | 7 | ## Workshops 8 | 9 | Join the _Bioconductor_ [#bioc2020](https://community-bioc.slack.com/archives/CLAEUFVAA) and [#bioc2019-workshops](https://community-bioc.slack.com/archives/CJDMYKG2U) channels for up-to-date information 10 | 11 | | 100 Level Workshops | 12 | |---------------------| 13 | | [Introduction to Bioconductor Annotation Resources](https://jmacdon.github.io/Bioc2020Anno/) | ![](https://github.com/jmacdon/Bioc2020Anno/workflows/.github/workflows/basic_checks.yaml/badge.svg) | [GitHub](https://github.com/jmacdon/Bioc2020Anno) | [Docker](https://hub.docker.com/repository/docker/jmacdon/Bioc2020Anno) | 14 | | [A Tidy Transcriptomics introduction to RNA-Seq analyses](https://stemangiola.github.io/bioc_2020_tidytranscriptomics/) | ![](https://github.com/stemangiola/bioc_2020_tidytranscriptomics/workflows/.github/workflows/basic_checks.yaml/badge.svg) | [GitHub](https://github.com/stemangiola/bioc_2020_tidytranscriptomics) | [Docker](https://hub.docker.com/repository/docker/stemangiola/bioc_2020_tidytranscriptomics) | 15 | | [Multi-omic Integration and Analysis of cBioPortal and TCGA data with MultiAssayExperiment](https://waldronlab.github.io/MultiAssayWorkshop/) | ![](https://github.com/waldronlab/MultiAssayWorkshop/workflows/.github/workflows/basic_checks.yaml/badge.svg) | [GitHub](https://github.com/waldronlab/MultiAssayWorkshop) | [Docker](https://hub.docker.com/repository/docker/waldronlab/MultiAssayWorkshop) | 16 | | [Public data resources and Bioconductor](https://waldronlab.github.io/PublicDataResources/) | ![](https://github.com/waldronlab/PublicDataResources/workflows/.github/workflows/basic_checks.yaml/badge.svg) | [GitHub](https://github.com/waldronlab/PublicDataResources) | [Docker](https://hub.docker.com/repository/docker/waldronlab/PublicDataResources) | 17 | | [Annotation of inter-sample epigenetic variation with COCOA](https://databio.github.io/cocoa_workshop_bioc2020/) | ![](https://github.com/databio/cocoa_workshop_bioc2020/workflows/.github/workflows/basic_checks.yaml/badge.svg) | [GitHub](https://github.com/databio/cocoa_workshop_bioc2020) | [Docker](https://hub.docker.com/repository/docker/databio/cocoa_workshop_bioc2020) | 18 | | [Human RNA-seq data from recount2 and related packages](https://LieberInstitute.github.io/recountWorkshop2020/) | ![](https://github.com/LieberInstitute/recountWorkshop2020/workflows/.github/workflows/basic_checks.yaml/badge.svg) | [GitHub](https://github.com/LieberInstitute/recountWorkshop2020/) | [Docker](https://hub.docker.com/repository/docker/LieberInstitute/recountWorkshop2020) | 19 | 20 | | 200 Level Workshops | 21 | |---------------------| 22 | | [Best practices for ATAC-seq QC and data analysis](https://haibol2016.github.io/ATACseqQCWorkshop/) | ![](https://github.com/haibol2016/ATACseqQCWorkshop/workflows/.github/workflows/basic_checks.yaml/badge.svg) | [GitHub](https://github.com/haibol2016/ATACseqQCWorkshop) | [Docker](https://hub.docker.com/repository/docker/haibol2016/ATACseqQCWorkshop) | 23 | | [iSEE: Interactive visualization of SummarizedExperiment objects](https://iSEE.github.io/iSEEWorkshop2020/) | ![](https://github.com/iSEE/iSEEWorkshop2020/workflows/.github/workflows/basic_checks.yaml/badge.svg) | [GitHub](https://github.com/iSEE/iSEEWorkshop2020) | [Docker](https://hub.docker.com/repository/docker/iSEE/iSEEWorkshop2020) | 24 | | [Functional enrichment analysis of high-throughput omics data](https://waldronlab.github.io/waldronlab/) | ![](https://github.com/waldronlab/enrichOmics/workflows/.github/workflows/basic_checks.yaml/badge.svg) | [GitHub](https://github.com/waldronlab/enrichOmics) | [Docker](https://hub.docker.com/repository/docker/waldronlab/enrichOmics) | 25 | | [Copy number variation analysis with Bioconductor](https://waldronlab.github.io/CNVWorkshop/) | ![](https://github.com/waldronlab/CNVWorkshop/workflows/.github/workflows/basic_checks.yaml/badge.svg) | [GitHub](https://github.com/waldronlab/CNVWorkshop) | [Docker](https://hub.docker.com/repository/docker/waldronlab/CNVWorkshop) | 26 | | [Comprehensive RNAseq Analysis with oneStopRNAseq](https://radio1988.github.io/oneStopRNAseqWorkshop/) | ![](https://github.com/radio1988/oneStopRNAseqWorkshop/workflows/.github/workflows/basic_checks.yaml/badge.svg) | [GitHub](https://github.com/radio1988/oneStopRNAseqWorkshop) | [Docker](https://hub.docker.com/repository/docker/radio1988/oneStopRNAseqWorkshop) | 27 | | [Integrated ChIP-seq Data Analysis Workshop](https://hukai916.github.io/IntegratedChIPseqWorkshop/) | ![](https://github.com/hukai916/IntegratedChIPseqWorkshop/workflows/.github/workflows/basic_checks.yaml/badge.svg) | [GitHub](https://github.com/hukai916/IntegratedChIPseqWorkshop) | [Docker](https://hub.docker.com/repository/docker/hukai916/IntegratedChIPseqWorkshop) | 28 | | [Hitchhikers Guide to PCA; Demystifying dimensionality reduction in R/Bioconductor](https://aedin.github.io/Frontiers_Supplement/) | ![](https://github.com/aedin/Frontiers_Supplement/workflows/.github/workflows/basic_checks.yaml/badge.svg) | [GitHub](https://github.com/aedin/Frontiers_Supplement) | [Docker](https://hub.docker.com/repository/docker/aedin/Frontiers_Supplement) | 29 | | [Epidemiology for Bioinformaticians](https://cmirzayi.github.io/epiforbioworkshop/) | ![](https://github.com/cmirzayi/epiforbioworkshop/workflows/.github/workflows/basic_checks.yaml/badge.svg) | [GitHub](https://github.com/cmirzayi/epiforbioworkshop) | [Docker](https://hub.docker.com/repository/docker/cmirzayi/epiforbioworkshop) | 30 | | [Biomarker discovery from high throughput screening datasets](https://bhklab.github.io/bioc2020workshop/) | ![](https://github.com/bhklab/bioc2020workshop/workflows/.github/workflows/basic_checks.yaml/badge.svg) | [GitHub](https://github.com/bhklab/bioc2020workshop) | [Docker](https://hub.docker.com/repository/docker/bhklab/bioc2020workshop) | 31 | 32 | 33 | | 500 Level Workshops | 34 | |---------------------| 35 | | [Create A Package](https://Kayla-Morrell.github.io/CreateAPackage/) | ![](https://github.com/Kayla-Morrell/CreateAPackage/workflows/.github/workflows/basic_checks.yaml/badge.svg) | [GitHub](https://github.com/Kayla-Morrell/CreateAPackage) | [Docker](https://hub.docker.com/repository/docker/Kayla-Morrell/CreateAPackage) | 36 | | [Connecting Bioconductor to other bioinformatics tools using Rcwl](https://Liubuntu.github.io/Bioc2020RCWL/) | ![](https://github.com/Liubuntu/Bioc2020RCWL/workflows/.github/workflows/basic_checks.yaml/badge.svg) | [GitHub](https://github.com/Liubuntu/Bioc2020RCWL) | [Docker](https://hub.docker.com/repository/docker/Liubuntu/Bioc2020RCWL) | 37 | | [Effectively using the DelayedArray framework as a user to support the analysis of large datasets](https://PeteHaitch.github.io/BioC2020_DelayedArray_workshop/) | ![](https://github.com/PeteHaitch/BioC2020_DelayedArray_workshop/workflows/.github/workflows/basic_checks.yaml/badge.svg) | [GitHub](https://github.com/PeteHaitch/BioC2020_DelayedArray_workshop) | [Docker](https://hub.docker.com/repository/docker/PeteHaitch/BioC2020_DelayedArray_workshop) | 38 | | [Introduction to the Terra/AnVIL Cloud-based Genomics Platform](https://waldronlab.github.io/AnVILWorkshop/) | ![](https://github.com/waldronlab/AnVILWorkshop/workflows/.github/workflows/basic_checks.yaml/badge.svg) | [GitHub](https://github.com/waldronlab/AnVILWorkshop) | [Docker](https://hub.docker.com/repository/docker/waldronlab/AnVILWorkshop) | 39 | | [multiHiCcompare: Differential Hi-C Data Analysis Workshop](https://mdozmorov.github.io/HiCcompareWorkshop/) | ![](https://github.com/mdozmorov/HiCcompareWorkshop/workflows/.github/workflows/basic_checks.yaml/badge.svg) | [GitHub](https://github.com/mdozmorov/HiCcompareWorkshop) | [Docker](https://hub.docker.com/repository/docker/mdozmorov/HiCcompareWorkshop) | 40 | | [Trajectory inference across conditions: differential expression and differential progression](https://kstreet13.github.io/bioc2020trajectories/) | ![](https://github.com/kstreet13/bioc2020trajectories/workflows/.github/workflows/basic_checks.yaml/badge.svg) | [GitHub](https://github.com/kstreet13/bioc2020trajectories) | [Docker](https://hub.docker.com/repository/docker/kstreet13/bioc2020trajectories) | 41 | | [Efficient, Scalable, and Reproducible Enrichment Workflows](https://montilab.github.io/hypeR-workshop/) | ![](https://github.com/montilab/hypeR-workshop/workflows/.github/workflows/basic_checks.yaml/badge.svg) | [GitHub](https://github.com/montilab/hypeR-workshop) | [Docker](https://hub.docker.com/repository/docker/montilab/hypeR-workshop) | 42 | 43 | Workshop packages were created using the [BuildABiocWorkshop2020](https://github.com/seandavi/BuildABiocWorkshop2020) template 44 | 45 | 46 | 47 | 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | speakers: 4 | - name: Corrie Painter 5 | inst: Count Me In and Broad Institute 6 | url: https://www.broadinstitute.org/bios/corrie-painter 7 | blurb: "Corrie Painter is the Associate Director of Count Me In and is a research scientist at the Broad Institute of MIT and Harvard. A trained cancer researcher with a Ph.D. in biochemistry, she completed her postdoctoral work in cancer immunology, focused on melanoma. In 2010, Painter was diagnosed with angiosarcoma. She has combined her cancer advocacy and scientific background to engage with patients in order to build and carry out patient-partnered genomics studies. She is also the co-founder of Angiosarcoma Awareness Inc." 8 | - name: Rafael Irizarry 9 | inst: Harvard University 10 | url: https://rafalab.github.io 11 | blurb: "Rafael Irizarry is Professor and Chair of the Department of Data Sciences at the Dana-Farber Cancer Institute and a Professor of Biostatistics at Harvard School of Public Health, and one of the original founders of the Bioconductor Project. Professor Irizarry’s work has focused on problems related to microarray, next-generation sequencing, and genomic data. Currently, he is interested in leveraging his knowledge in translational work, e.g. developing diagnostic tools and discovering biomarkers. During his career, he has co-authored papers on a variety of topics including musical sound signals, infectious diseases, circadian patterns in health, fetal health monitoring, and estimating the effects of Hurricane María in Puerto Rico." 12 | - name: Caroline Uhler 13 | inst: ETH Zurich, Switzerland 14 | url: https://www.carolineuhler.com 15 | blurb: "Caroline Uhler, formerly Associate Professor at MIT in Cambridge, USA, recently joined the ETH Zurich, Switzerland, as Professor of Machine Learning, Statistics and Genomics. Her research focuses on statistics, machine learning and computational biology. In particular, graphical models, causal inference, algebraic statistics and applications to genomics, for example linking the spatial organization of the DNA with gene regulation." 16 | - name: Kylie Ariel Bemis 17 | inst: Northeastern University 18 | url: https://kuwisdelu.github.io 19 | blurb: "Kylie Bemis is a faculty in the Khoury College of Computer Sciences at Northeastern University where she teaches data science and develops curriculum for the MS in Data Science program. Her research interests include machine learning and large-scale statistical computing for bioinformatics. She is active in outreach to the Native American and LGBTQ communities, an enrolled member of the Zuni tribe, and a writer of fiction and poetry." 20 | - name: Fei Chen 21 | inst: Broad Institute 22 | url: https://www.insitubiology.org 23 | blurb: "Fei Chen is currently a Fellow at the Broad Institute. During the course of his doctoral studies in Biological Engineering at MIT, Fei co-invented expansion microscopy (ExM): A breakthrough technique that allows for super-resolution imaging of biological samples with conventional light microscopes. Chen's lab utilizes ExM as a platform for in situ transcriptomics and epigenomics, while continuing to pioneer novel molecular and microscopy tools to uniquely illuminate biological pathways and function." 24 | - name: Aaron Lun 25 | inst: Genentech 26 | url: https://ltla.github.io/about 27 | blurb: "Aaron Lun is a Scientist at Genentech, and previously was a research associate in John Marioni’s group at the CRUK Cambridge Institute and completed a PhD with Gordon Smyth at the Walter and Eliza Hall Institute for Medical Research in Melbourne. Aaron is a prolific contributor to the Bioconductor project, currently especially in the area of single-cell RNA-seq." 28 | - name: Xiaole Shirley Liu 29 | inst: Harvard University 30 | url: https://liulab-dfci.github.io 31 | blurb: "Shirley Liu is a Professor with the Department of Biostatistics and Computational Biology at the Dana-Farber Cancer Institute and Harvard School of Public Health. Her research focuses on algorithm development and integrative mining from big data generated on microarrays, massively parallel sequencing, and other high throughput techniques to model the specificity and function of transcription factors, chromatin regulators and lncRNAs in tumor development, progression, drug response and resistance." 32 | --- 33 | 34 | {% include header.md %} 35 | 36 | 37 | BioC2020 is proceeding as a [Virtual Conference](https://bioc2020.pathable.co/), July 27-31, 2020. BioC2020 highlights current developments within and beyond 38 | the [Bioconductor](https://www.bioconductor.org) project. 39 | 40 | Registration to [virtual Bioc2020](https://bioc2020.pathable.co/) is now closed. We are at capacity of the virtual platform. If registered participants are unable to attend, please let us know. If you have registered, you should receive an email from pathable.com with your login information to the virtual platform. 41 | 42 | ## Conference highlights 43 | 44 | 45 | * Keynotes and contributed talks with live Q&A sessions 46 | * [Workshop materials](./workshops.md) are available 47 | * Posters and Slides are available on the [Bioconductor F1000 Bioc2020 portal](https://f1000research.com/gateways/bioconductor/bioc2020) 48 | * Live tweets of the conference will be posted on [Twitter](https://twitter.com/hashtag/bioc2020) using [#bioc2020](https://twitter.com/hashtag/bioc2020) hashtag 49 | * Videos of talks will be posted on the [Bioconductor YouTube channel](https://www.youtube.com/user/bioconductor) after the conference ([in progress](https://www.youtube.com/watch?v=8MojYYkuLcM&list=PLdl4u5ZRDMQSENJBo6k_wcA27gtydm-bz)) 50 | * Join Bioc conversations on Slack [https://bioc-community.herokuapp.com/](https://bioc-community.herokuapp.com/) 51 | * Follow [@Bioconductor](https://twitter.com/Bioconductor) on Twitter [https://twitter.com/Bioconductor](https://twitter.com/Bioconductor) 52 | * For Bioconductor support, use [https://support.bioconductor.org/](https://support.bioconductor.org/) 53 | * Bioconductor website [https://www.bioconductor.org/](https://www.bioconductor.org/) 54 | * Contact Us: [workshop@bioconductor.org](mailto:workshop@bioconductor.org) 55 | * Technical Support for BioC2020: [virtual@conferencedirect.com](mailto:virtual@conferencedirect.com) 56 | 57 | 63 | 64 | Conference flyer [#1](images/flyers/BioC2020Flyerlandscape_lg.pdf), [#2](images/flyers/BioC2020FlyerPortrait.pdf) 65 | 66 | 69 | 70 | 95 | 96 | ## Confirmed Speakers 97 | 98 | {% for s in page.speakers %} 99 | {% assign imgpath = "images/speakers/" | append: s.name | remove: ' ' | append: '.jpg' %} 100 | 101 | ### [{{ s.name }}]({{ s.url }}), {{ s.inst }} 102 | 103 | > {{ s.blurb }} 104 | 105 | {% endfor %} 106 | 107 | More information: [workshop@bioconductor.org][contact] 108 | 109 | 112 | 113 | 114 | 115 | [contact]: mailto:workshop@bioconductor.org?subject=BioC2020%20question 116 | [survey]: https://forms.gle/eRWv3tdXLvxYT2CYA 117 | -------------------------------------------------------------------------------- /docs/Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | specs: 4 | actionpack (4.2.11.1) 5 | actionview (= 4.2.11.1) 6 | activesupport (= 4.2.11.1) 7 | rack (~> 1.6) 8 | rack-test (~> 0.6.2) 9 | rails-dom-testing (~> 1.0, >= 1.0.5) 10 | rails-html-sanitizer (~> 1.0, >= 1.0.2) 11 | actionview (4.2.11.1) 12 | activesupport (= 4.2.11.1) 13 | builder (~> 3.1) 14 | erubis (~> 2.7.0) 15 | rails-dom-testing (~> 1.0, >= 1.0.5) 16 | rails-html-sanitizer (~> 1.0, >= 1.0.3) 17 | activesupport (4.2.11.1) 18 | i18n (~> 0.7) 19 | minitest (~> 5.1) 20 | thread_safe (~> 0.3, >= 0.3.4) 21 | tzinfo (~> 1.1) 22 | addressable (2.8.0) 23 | public_suffix (>= 2.0.2, < 5.0) 24 | builder (3.2.3) 25 | coffee-script (2.4.1) 26 | coffee-script-source 27 | execjs 28 | coffee-script-source (1.11.1) 29 | colorator (1.1.0) 30 | commonmarker (0.17.13) 31 | ruby-enum (~> 0.5) 32 | concurrent-ruby (1.1.5) 33 | crass (1.0.6) 34 | dnsruby (1.61.9) 35 | simpleidn (~> 0.1) 36 | em-websocket (0.5.1) 37 | eventmachine (>= 0.12.9) 38 | http_parser.rb (~> 0.6.0) 39 | erubis (2.7.0) 40 | ethon (0.15.0) 41 | ffi (>= 1.15.0) 42 | eventmachine (1.2.7) 43 | execjs (2.7.0) 44 | faraday (1.10.0) 45 | faraday-em_http (~> 1.0) 46 | faraday-em_synchrony (~> 1.0) 47 | faraday-excon (~> 1.1) 48 | faraday-httpclient (~> 1.0) 49 | faraday-multipart (~> 1.0) 50 | faraday-net_http (~> 1.0) 51 | faraday-net_http_persistent (~> 1.0) 52 | faraday-patron (~> 1.0) 53 | faraday-rack (~> 1.0) 54 | faraday-retry (~> 1.0) 55 | ruby2_keywords (>= 0.0.4) 56 | faraday-em_http (1.0.0) 57 | faraday-em_synchrony (1.0.0) 58 | faraday-excon (1.1.0) 59 | faraday-httpclient (1.0.1) 60 | faraday-multipart (1.0.3) 61 | multipart-post (>= 1.2, < 3) 62 | faraday-net_http (1.0.1) 63 | faraday-net_http_persistent (1.2.0) 64 | faraday-patron (1.0.0) 65 | faraday-rack (1.0.0) 66 | faraday-retry (1.0.3) 67 | ffi (1.15.5) 68 | forwardable-extended (2.6.0) 69 | gemoji (3.0.0) 70 | github-pages (198) 71 | activesupport (= 4.2.11.1) 72 | github-pages-health-check (= 1.16.1) 73 | jekyll (= 3.8.5) 74 | jekyll-avatar (= 0.6.0) 75 | jekyll-coffeescript (= 1.1.1) 76 | jekyll-commonmark-ghpages (= 0.1.5) 77 | jekyll-default-layout (= 0.1.4) 78 | jekyll-feed (= 0.11.0) 79 | jekyll-gist (= 1.5.0) 80 | jekyll-github-metadata (= 2.12.1) 81 | jekyll-mentions (= 1.4.1) 82 | jekyll-optional-front-matter (= 0.3.0) 83 | jekyll-paginate (= 1.1.0) 84 | jekyll-readme-index (= 0.2.0) 85 | jekyll-redirect-from (= 0.14.0) 86 | jekyll-relative-links (= 0.6.0) 87 | jekyll-remote-theme (= 0.3.1) 88 | jekyll-sass-converter (= 1.5.2) 89 | jekyll-seo-tag (= 2.5.0) 90 | jekyll-sitemap (= 1.2.0) 91 | jekyll-swiss (= 0.4.0) 92 | jekyll-theme-architect (= 0.1.1) 93 | jekyll-theme-cayman (= 0.1.1) 94 | jekyll-theme-dinky (= 0.1.1) 95 | jekyll-theme-hacker (= 0.1.1) 96 | jekyll-theme-leap-day (= 0.1.1) 97 | jekyll-theme-merlot (= 0.1.1) 98 | jekyll-theme-midnight (= 0.1.1) 99 | jekyll-theme-minimal (= 0.1.1) 100 | jekyll-theme-modernist (= 0.1.1) 101 | jekyll-theme-primer (= 0.5.3) 102 | jekyll-theme-slate (= 0.1.1) 103 | jekyll-theme-tactile (= 0.1.1) 104 | jekyll-theme-time-machine (= 0.1.1) 105 | jekyll-titles-from-headings (= 0.5.1) 106 | jemoji (= 0.10.2) 107 | kramdown (= 1.17.0) 108 | liquid (= 4.0.0) 109 | listen (= 3.1.5) 110 | mercenary (~> 0.3) 111 | minima (= 2.5.0) 112 | nokogiri (>= 1.8.5, < 2.0) 113 | rouge (= 2.2.1) 114 | terminal-table (~> 1.4) 115 | github-pages-health-check (1.16.1) 116 | addressable (~> 2.3) 117 | dnsruby (~> 1.60) 118 | octokit (~> 4.0) 119 | public_suffix (~> 3.0) 120 | typhoeus (~> 1.3) 121 | html-pipeline (2.11.0) 122 | activesupport (>= 2) 123 | nokogiri (>= 1.4) 124 | http_parser.rb (0.6.0) 125 | i18n (0.9.5) 126 | concurrent-ruby (~> 1.0) 127 | jekyll (3.8.5) 128 | addressable (~> 2.4) 129 | colorator (~> 1.0) 130 | em-websocket (~> 0.5) 131 | i18n (~> 0.7) 132 | jekyll-sass-converter (~> 1.0) 133 | jekyll-watch (~> 2.0) 134 | kramdown (~> 1.14) 135 | liquid (~> 4.0) 136 | mercenary (~> 0.3.3) 137 | pathutil (~> 0.9) 138 | rouge (>= 1.7, < 4) 139 | safe_yaml (~> 1.0) 140 | jekyll-avatar (0.6.0) 141 | jekyll (~> 3.0) 142 | jekyll-coffeescript (1.1.1) 143 | coffee-script (~> 2.2) 144 | coffee-script-source (~> 1.11.1) 145 | jekyll-commonmark (1.3.1) 146 | commonmarker (~> 0.14) 147 | jekyll (>= 3.7, < 5.0) 148 | jekyll-commonmark-ghpages (0.1.5) 149 | commonmarker (~> 0.17.6) 150 | jekyll-commonmark (~> 1) 151 | rouge (~> 2) 152 | jekyll-default-layout (0.1.4) 153 | jekyll (~> 3.0) 154 | jekyll-feed (0.11.0) 155 | jekyll (~> 3.3) 156 | jekyll-gist (1.5.0) 157 | octokit (~> 4.2) 158 | jekyll-github-metadata (2.12.1) 159 | jekyll (~> 3.4) 160 | octokit (~> 4.0, != 4.4.0) 161 | jekyll-mentions (1.4.1) 162 | html-pipeline (~> 2.3) 163 | jekyll (~> 3.0) 164 | jekyll-optional-front-matter (0.3.0) 165 | jekyll (~> 3.0) 166 | jekyll-paginate (1.1.0) 167 | jekyll-readme-index (0.2.0) 168 | jekyll (~> 3.0) 169 | jekyll-redirect-from (0.14.0) 170 | jekyll (~> 3.3) 171 | jekyll-relative-links (0.6.0) 172 | jekyll (~> 3.3) 173 | jekyll-remote-theme (0.3.1) 174 | jekyll (~> 3.5) 175 | rubyzip (>= 1.2.1, < 3.0) 176 | jekyll-sass-converter (1.5.2) 177 | sass (~> 3.4) 178 | jekyll-seo-tag (2.5.0) 179 | jekyll (~> 3.3) 180 | jekyll-sitemap (1.2.0) 181 | jekyll (~> 3.3) 182 | jekyll-swiss (0.4.0) 183 | jekyll-theme-architect (0.1.1) 184 | jekyll (~> 3.5) 185 | jekyll-seo-tag (~> 2.0) 186 | jekyll-theme-cayman (0.1.1) 187 | jekyll (~> 3.5) 188 | jekyll-seo-tag (~> 2.0) 189 | jekyll-theme-dinky (0.1.1) 190 | jekyll (~> 3.5) 191 | jekyll-seo-tag (~> 2.0) 192 | jekyll-theme-hacker (0.1.1) 193 | jekyll (~> 3.5) 194 | jekyll-seo-tag (~> 2.0) 195 | jekyll-theme-leap-day (0.1.1) 196 | jekyll (~> 3.5) 197 | jekyll-seo-tag (~> 2.0) 198 | jekyll-theme-merlot (0.1.1) 199 | jekyll (~> 3.5) 200 | jekyll-seo-tag (~> 2.0) 201 | jekyll-theme-midnight (0.1.1) 202 | jekyll (~> 3.5) 203 | jekyll-seo-tag (~> 2.0) 204 | jekyll-theme-minimal (0.1.1) 205 | jekyll (~> 3.5) 206 | jekyll-seo-tag (~> 2.0) 207 | jekyll-theme-modernist (0.1.1) 208 | jekyll (~> 3.5) 209 | jekyll-seo-tag (~> 2.0) 210 | jekyll-theme-primer (0.5.3) 211 | jekyll (~> 3.5) 212 | jekyll-github-metadata (~> 2.9) 213 | jekyll-seo-tag (~> 2.0) 214 | jekyll-theme-slate (0.1.1) 215 | jekyll (~> 3.5) 216 | jekyll-seo-tag (~> 2.0) 217 | jekyll-theme-tactile (0.1.1) 218 | jekyll (~> 3.5) 219 | jekyll-seo-tag (~> 2.0) 220 | jekyll-theme-time-machine (0.1.1) 221 | jekyll (~> 3.5) 222 | jekyll-seo-tag (~> 2.0) 223 | jekyll-titles-from-headings (0.5.1) 224 | jekyll (~> 3.3) 225 | jekyll-watch (2.2.1) 226 | listen (~> 3.0) 227 | jemoji (0.10.2) 228 | gemoji (~> 3.0) 229 | html-pipeline (~> 2.2) 230 | jekyll (~> 3.0) 231 | kramdown (1.17.0) 232 | liquid (4.0.0) 233 | listen (3.1.5) 234 | rb-fsevent (~> 0.9, >= 0.9.4) 235 | rb-inotify (~> 0.9, >= 0.9.7) 236 | ruby_dep (~> 1.2) 237 | loofah (2.18.0) 238 | crass (~> 1.0.2) 239 | nokogiri (>= 1.5.9) 240 | mercenary (0.3.6) 241 | mini_portile2 (2.8.0) 242 | minima (2.5.0) 243 | jekyll (~> 3.5) 244 | jekyll-feed (~> 0.9) 245 | jekyll-seo-tag (~> 2.1) 246 | minimal (0.0.26) 247 | actionpack (>= 3.0.0) 248 | activesupport (>= 3.0.0) 249 | minitest (5.11.3) 250 | multipart-post (2.1.1) 251 | nokogiri (1.13.6) 252 | mini_portile2 (~> 2.8.0) 253 | racc (~> 1.4) 254 | octokit (4.22.0) 255 | faraday (>= 0.9) 256 | sawyer (~> 0.8.0, >= 0.5.3) 257 | pathutil (0.16.2) 258 | forwardable-extended (~> 2.6) 259 | public_suffix (3.1.1) 260 | racc (1.6.0) 261 | rack (1.6.12) 262 | rack-test (0.6.3) 263 | rack (>= 1.0) 264 | rails-deprecated_sanitizer (1.0.3) 265 | activesupport (>= 4.2.0.alpha) 266 | rails-dom-testing (1.0.9) 267 | activesupport (>= 4.2.0, < 5.0) 268 | nokogiri (~> 1.6) 269 | rails-deprecated_sanitizer (>= 1.0.1) 270 | rails-html-sanitizer (1.4.3) 271 | loofah (~> 2.3) 272 | rb-fsevent (0.10.3) 273 | rb-inotify (0.10.0) 274 | ffi (~> 1.0) 275 | rouge (2.2.1) 276 | ruby-enum (0.7.2) 277 | i18n 278 | ruby2_keywords (0.0.5) 279 | ruby_dep (1.5.0) 280 | rubyzip (2.0.0) 281 | safe_yaml (1.0.5) 282 | sass (3.7.4) 283 | sass-listen (~> 4.0.0) 284 | sass-listen (4.0.0) 285 | rb-fsevent (~> 0.9, >= 0.9.4) 286 | rb-inotify (~> 0.9, >= 0.9.7) 287 | sawyer (0.8.2) 288 | addressable (>= 2.3.5) 289 | faraday (> 0.8, < 2.0) 290 | simpleidn (0.2.1) 291 | unf (~> 0.1.4) 292 | terminal-table (1.8.0) 293 | unicode-display_width (~> 1.1, >= 1.1.1) 294 | thread_safe (0.3.6) 295 | typhoeus (1.4.0) 296 | ethon (>= 0.9.0) 297 | tzinfo (1.2.10) 298 | thread_safe (~> 0.1) 299 | unf (0.1.4) 300 | unf_ext 301 | unf_ext (0.0.8) 302 | unicode-display_width (1.5.0) 303 | 304 | PLATFORMS 305 | ruby 306 | 307 | DEPENDENCIES 308 | github-pages 309 | jekyll 310 | minimal 311 | 312 | BUNDLED WITH 313 | 2.0.1 314 | -------------------------------------------------------------------------------- /docs/organizers.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | {% include header.md %} 6 | 7 | ## Members of organizing committees 8 | 9 | **Bold** highlights leaders of the committees 10 | 11 | 12 | | Photo | Name | Affiliation | Committee | 13 | |--------------------------------------------------------------|-------------------------|-------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------| 14 | | | Aedin Culhane | Dana-Farber Cancer Institute, Harvard TH Chan School of Public Health | **Co-chair**, **Sponsorship**, Program: Competitive component, Program: non-competitive component, Code of Conduct | 15 | | | Anthony Federico | | Website, Education/Workshop | 16 | | | Ayush Raman | | Outreach, Education/Workshop, Program: Competitive component, Program: non-competitive component | 17 | | | Charlotte Soneson | Friedrich Miescher Institute for Biomedical Research | **Program: non-competitive component**, Website, Education/Workshop, Program: Competitive component | 18 | | | Chiaowen Joyce Hsiao | | Program: Competitive component, Program: non-competitive component | 19 | | | Deepak Tanwar | | Program: Competitive component, Program: non-competitive component | 20 | | | Erica Feick | | **Outreach**, Code of Conduct | 21 | | | Frederick Boehm | | Outreach, Website, Education/Workshop, Program: Competitive component, Program: non-competitive component, Code of Conduct | 22 | | | Hector Corrada Bravo | | | 23 | | | Helena Crowell | Institute of Molecular Life Sciences, University of Zurich, Switzerland | Website, Program: Competitive component, Program: non-competitive component, Code of Conduct | 24 | | | John Hutchinson | | Outreach | 25 | | | Lauren Hsu | | Education/Workshop, Program: Competitive component, Program: non-competitive component, Code of Conduct | 26 | | | Laurent Gatto | | | 27 | | | Levi Waldron | CUNY Graduate School of Public Health and Health Policy | **Co-chair**, **Code of Conduct**, Education/Workshop, Program: Competitive component, Program: non-competitive component, Sponsorship | 28 | | | Lorena Pantano | eGenesis, MA | **Website**, Education/Workshop, Program: non-competitive component, Code of Conduct | 29 | | | Lori Shepherd | Roswell Park Comprehensive Cancer Center | Website, Education/Workshop, Program: Competitive component, Program: non-competitive component | 30 | | | Marcel Ramos | | Education/Workshop | 31 | | | Martin Morgan | Roswell Park Comprehensive Cancer Center | Website, Program: non-competitive component, Sponsorship, Businness administration, Bioconductor organization | 32 | | | Matthew McCall | | **Program: Competitive component** | 33 | | | Mikhail Dozmorov | Virginia Commonwealth University | Website, Education/Workshop, Program: Competitive component, Program: non-competitive component | 34 | | | Nathan Sheffield | | Education/Workshop | 35 | | | Oriol Senan | | Website, Education/Workshop | 36 | | | Peter Hickey | | Code of Conduct | 37 | | | Qian Liu | Roswell Park Comprehensive Cancer Center | Website, Program: Competitive component, Program: non-competitive component, Sponsorship | 38 | | | Rafael Irizarry | | Program: non-competitive component, Sponsorship | 39 | | | Ricardo de Matos Simoes | | Education/Workshop, Program: Competitive component, Program: non-competitive component | 40 | | | Sean Davis | National Cancer Institute, National Institutes of Health | **Education/Workshop** | 41 | | | Simina Boca | Georgetown University | Outreach, Website, Education/Workshop, Program: Competitive component, Program: non-competitive component | 42 | | | Simone Bell | | **Program: non-competitive component**, Sponsorship | 43 | | | Tom Carroll | | | 44 | | | Venu Thatikonda | German Cancer Research Center, Heidelberg | Outreach, Website | 45 | | | Vincent Carey | | | 46 | | | Zhezhen Wang | | Outreach, Website, Education/Workshop | 47 | -------------------------------------------------------------------------------- /docs/assets/css/style.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Noto Sans'; 3 | font-weight: 400; 4 | font-style: normal; 5 | src: url("../fonts/Noto-Sans-regular/Noto-Sans-regular.eot"); 6 | src: url("../fonts/Noto-Sans-regular/Noto-Sans-regular.eot?#iefix") format("embedded-opentype"), local("Noto Sans"), local("Noto-Sans-regular"), url("../fonts/Noto-Sans-regular/Noto-Sans-regular.woff2") format("woff2"), url("../fonts/Noto-Sans-regular/Noto-Sans-regular.woff") format("woff"), url("../fonts/Noto-Sans-regular/Noto-Sans-regular.ttf") format("truetype"), url("../fonts/Noto-Sans-regular/Noto-Sans-regular.svg#NotoSans") format("svg"); } 7 | @font-face { 8 | font-family: 'Noto Sans'; 9 | font-weight: 700; 10 | font-style: normal; 11 | src: url("../fonts/Noto-Sans-700/Noto-Sans-700.eot"); 12 | src: url("../fonts/Noto-Sans-700/Noto-Sans-700.eot?#iefix") format("embedded-opentype"), local("Noto Sans Bold"), local("Noto-Sans-700"), url("../fonts/Noto-Sans-700/Noto-Sans-700.woff2") format("woff2"), url("../fonts/Noto-Sans-700/Noto-Sans-700.woff") format("woff"), url("../fonts/Noto-Sans-700/Noto-Sans-700.ttf") format("truetype"), url("../fonts/Noto-Sans-700/Noto-Sans-700.svg#NotoSans") format("svg"); } 13 | @font-face { 14 | font-family: 'Noto Sans'; 15 | font-weight: 400; 16 | font-style: italic; 17 | src: url("../fonts/Noto-Sans-italic/Noto-Sans-italic.eot"); 18 | src: url("../fonts/Noto-Sans-italic/Noto-Sans-italic.eot?#iefix") format("embedded-opentype"), local("Noto Sans Italic"), local("Noto-Sans-italic"), url("../fonts/Noto-Sans-italic/Noto-Sans-italic.woff2") format("woff2"), url("../fonts/Noto-Sans-italic/Noto-Sans-italic.woff") format("woff"), url("../fonts/Noto-Sans-italic/Noto-Sans-italic.ttf") format("truetype"), url("../fonts/Noto-Sans-italic/Noto-Sans-italic.svg#NotoSans") format("svg"); } 19 | @font-face { 20 | font-family: 'Noto Sans'; 21 | font-weight: 700; 22 | font-style: italic; 23 | src: url("../fonts/Noto-Sans-700italic/Noto-Sans-700italic.eot"); 24 | src: url("../fonts/Noto-Sans-700italic/Noto-Sans-700italic.eot?#iefix") format("embedded-opentype"), local("Noto Sans Bold Italic"), local("Noto-Sans-700italic"), url("../fonts/Noto-Sans-700italic/Noto-Sans-700italic.woff2") format("woff2"), url("../fonts/Noto-Sans-700italic/Noto-Sans-700italic.woff") format("woff"), url("../fonts/Noto-Sans-700italic/Noto-Sans-700italic.ttf") format("truetype"), url("../fonts/Noto-Sans-700italic/Noto-Sans-700italic.svg#NotoSans") format("svg"); } 25 | .highlight table td { 26 | padding: 5px; } 27 | 28 | .highlight table pre { 29 | margin: 0; } 30 | 31 | .highlight .cm { 32 | color: #999988; 33 | font-style: italic; } 34 | 35 | .highlight .cp { 36 | color: #999999; 37 | font-weight: bold; } 38 | 39 | .highlight .c1 { 40 | color: #999988; 41 | font-style: italic; } 42 | 43 | .highlight .cs { 44 | color: #999999; 45 | font-weight: bold; 46 | font-style: italic; } 47 | 48 | .highlight .c, .highlight .cd { 49 | color: #999988; 50 | font-style: italic; } 51 | 52 | .highlight .err { 53 | color: #a61717; 54 | background-color: #e3d2d2; } 55 | 56 | .highlight .gd { 57 | color: #000000; 58 | background-color: #ffdddd; } 59 | 60 | .highlight .ge { 61 | color: #000000; 62 | font-style: italic; } 63 | 64 | .highlight .gr { 65 | color: #aa0000; } 66 | 67 | .highlight .gh { 68 | color: #999999; } 69 | 70 | .highlight .gi { 71 | color: #000000; 72 | background-color: #ddffdd; } 73 | 74 | .highlight .go { 75 | color: #888888; } 76 | 77 | .highlight .gp { 78 | color: #555555; } 79 | 80 | .highlight .gs { 81 | font-weight: bold; } 82 | 83 | .highlight .gu { 84 | color: #aaaaaa; } 85 | 86 | .highlight .gt { 87 | color: #aa0000; } 88 | 89 | .highlight .kc { 90 | color: #000000; 91 | font-weight: bold; } 92 | 93 | .highlight .kd { 94 | color: #000000; 95 | font-weight: bold; } 96 | 97 | .highlight .kn { 98 | color: #000000; 99 | font-weight: bold; } 100 | 101 | .highlight .kp { 102 | color: #000000; 103 | font-weight: bold; } 104 | 105 | .highlight .kr { 106 | color: #000000; 107 | font-weight: bold; } 108 | 109 | .highlight .kt { 110 | color: #445588; 111 | font-weight: bold; } 112 | 113 | .highlight .k, .highlight .kv { 114 | color: #000000; 115 | font-weight: bold; } 116 | 117 | .highlight .mf { 118 | color: #009999; } 119 | 120 | .highlight .mh { 121 | color: #009999; } 122 | 123 | .highlight .il { 124 | color: #009999; } 125 | 126 | .highlight .mi { 127 | color: #009999; } 128 | 129 | .highlight .mo { 130 | color: #009999; } 131 | 132 | .highlight .m, .highlight .mb, .highlight .mx { 133 | color: #009999; } 134 | 135 | .highlight .sb { 136 | color: #d14; } 137 | 138 | .highlight .sc { 139 | color: #d14; } 140 | 141 | .highlight .sd { 142 | color: #d14; } 143 | 144 | .highlight .s2 { 145 | color: #d14; } 146 | 147 | .highlight .se { 148 | color: #d14; } 149 | 150 | .highlight .sh { 151 | color: #d14; } 152 | 153 | .highlight .si { 154 | color: #d14; } 155 | 156 | .highlight .sx { 157 | color: #d14; } 158 | 159 | .highlight .sr { 160 | color: #009926; } 161 | 162 | .highlight .s1 { 163 | color: #d14; } 164 | 165 | .highlight .ss { 166 | color: #990073; } 167 | 168 | .highlight .s { 169 | color: #d14; } 170 | 171 | .highlight .na { 172 | color: #008080; } 173 | 174 | .highlight .bp { 175 | color: #999999; } 176 | 177 | .highlight .nb { 178 | color: #0086B3; } 179 | 180 | .highlight .nc { 181 | color: #445588; 182 | font-weight: bold; } 183 | 184 | .highlight .no { 185 | color: #008080; } 186 | 187 | .highlight .nd { 188 | color: #3c5d5d; 189 | font-weight: bold; } 190 | 191 | .highlight .ni { 192 | color: #800080; } 193 | 194 | .highlight .ne { 195 | color: #990000; 196 | font-weight: bold; } 197 | 198 | .highlight .nf { 199 | color: #990000; 200 | font-weight: bold; } 201 | 202 | .highlight .nl { 203 | color: #990000; 204 | font-weight: bold; } 205 | 206 | .highlight .nn { 207 | color: #555555; } 208 | 209 | .highlight .nt { 210 | color: #000080; } 211 | 212 | .highlight .vc { 213 | color: #008080; } 214 | 215 | .highlight .vg { 216 | color: #008080; } 217 | 218 | .highlight .vi { 219 | color: #008080; } 220 | 221 | .highlight .nv { 222 | color: #008080; } 223 | 224 | .highlight .ow { 225 | color: #000000; 226 | font-weight: bold; } 227 | 228 | .highlight .o { 229 | color: #000000; 230 | font-weight: bold; } 231 | 232 | .highlight .w { 233 | color: #bbbbbb; } 234 | 235 | .highlight { 236 | background-color: #f8f8f8; } 237 | 238 | body { 239 | background-color: #fff; 240 | padding: 50px; 241 | font: 14px/1.5 "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; 242 | color: #727272; 243 | font-weight: 400; } 244 | 245 | h1, h2, h3, h4, h5, h6 { 246 | color: #222; 247 | margin: 0 0 20px; } 248 | 249 | p, ul, ol, table, pre, dl { 250 | margin: 0 0 20px; } 251 | 252 | h1, h2, h3 { 253 | line-height: 1.1; } 254 | 255 | h1 { 256 | font-size: 28px; } 257 | 258 | h2 { 259 | color: #393939; } 260 | 261 | h3, h4, h5, h6 { 262 | color: #494949; } 263 | 264 | a { 265 | color: #267CB9; 266 | text-decoration: none; } 267 | 268 | a:hover, a:focus { 269 | color: #069; 270 | font-weight: bold; } 271 | 272 | a small { 273 | font-size: 11px; 274 | color: #777; 275 | margin-top: -0.3em; 276 | display: block; } 277 | 278 | a:hover small { 279 | color: #777; } 280 | 281 | .wrapper { 282 | width: 860px; 283 | margin: 0 auto; } 284 | 285 | blockquote { 286 | border-left: 1px solid #e5e5e5; 287 | margin: 0; 288 | padding: 0 0 0 20px; 289 | font-style: italic; } 290 | 291 | code, pre { 292 | font-family: Monaco, Bitstream Vera Sans Mono, Lucida Console, Terminal, Consolas, Liberation Mono, DejaVu Sans Mono, Courier New, monospace; 293 | color: #333; 294 | font-size: 12px; } 295 | 296 | pre { 297 | padding: 8px 15px; 298 | background: #f8f8f8; 299 | border-radius: 5px; 300 | border: 1px solid #e5e5e5; 301 | overflow-x: auto; } 302 | 303 | table { 304 | width: 100%; 305 | border-collapse: collapse; } 306 | 307 | th, td { 308 | text-align: left; 309 | padding: 5px 10px; 310 | border-bottom: 1px solid #e5e5e5; } 311 | 312 | dt { 313 | color: #444; } 314 | 315 | th { 316 | color: #444; } 317 | 318 | img { 319 | max-width: 100%; } 320 | 321 | header { 322 | width: 270px; 323 | float: left; 324 | -webkit-font-smoothing: subpixel-antialiased; } 325 | 326 | header ul { 327 | list-style: none; 328 | height: 40px; 329 | padding: 0; 330 | background: #f4f4f4; 331 | border-radius: 5px; 332 | border: 1px solid #e0e0e0; 333 | width: 270px; } 334 | 335 | header li { 336 | width: 89px; 337 | float: left; 338 | border-right: 1px solid #e0e0e0; 339 | height: 40px; } 340 | 341 | header li:first-child a { 342 | border-radius: 5px 0 0 5px; } 343 | 344 | header li:last-child a { 345 | border-radius: 0 5px 5px 0; } 346 | 347 | header ul a { 348 | line-height: 1; 349 | font-size: 11px; 350 | color: #676767; 351 | display: block; 352 | text-align: center; 353 | padding-top: 6px; 354 | height: 34px; } 355 | 356 | header ul a:hover, header ul a:focus { 357 | color: #675C5C; 358 | font-weight: bold; } 359 | 360 | header ul a:active { 361 | background-color: #f0f0f0; } 362 | 363 | strong { 364 | color: #222; 365 | font-weight: 700; } 366 | 367 | header ul li + li + li { 368 | border-right: none; 369 | width: 89px; } 370 | 371 | header ul a strong { 372 | font-size: 14px; 373 | display: block; 374 | color: #222; } 375 | 376 | section { 377 | width: 500px; 378 | float: right; 379 | padding-bottom: 50px; } 380 | 381 | small { 382 | font-size: 11px; } 383 | 384 | hr { 385 | border: 0; 386 | background: #e5e5e5; 387 | height: 1px; 388 | margin: 0 0 20px; } 389 | 390 | footer { 391 | width: 270px; 392 | float: left; 393 | position: fixed; 394 | bottom: 50px; 395 | -webkit-font-smoothing: subpixel-antialiased; } 396 | 397 | @media print, screen and (max-width: 960px) { 398 | div.wrapper { 399 | width: auto; 400 | margin: 0; } 401 | 402 | header, section, footer { 403 | float: none; 404 | position: static; 405 | width: auto; } 406 | 407 | header { 408 | padding-right: 320px; } 409 | 410 | section { 411 | border: 1px solid #e5e5e5; 412 | border-width: 1px 0; 413 | padding: 20px 0; 414 | margin: 0 0 20px; } 415 | 416 | header a small { 417 | display: inline; } 418 | 419 | header ul { 420 | position: absolute; 421 | right: 50px; 422 | top: 52px; } } 423 | @media print, screen and (max-width: 720px) { 424 | body { 425 | word-wrap: break-word; } 426 | 427 | header { 428 | padding: 0; } 429 | 430 | header ul, header p.view { 431 | position: static; } 432 | 433 | pre, code { 434 | word-wrap: normal; } } 435 | @media print, screen and (max-width: 480px) { 436 | body { 437 | padding: 15px; } 438 | 439 | header ul { 440 | width: 99%; } 441 | 442 | header li, header ul li + li + li { 443 | width: 33%; } } 444 | @media print { 445 | body { 446 | padding: 0.4in; 447 | font-size: 12pt; 448 | color: #444; } } 449 | -------------------------------------------------------------------------------- /docs/code_of_conduct.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | {% include header.md %} 6 | 7 | # Code of Conduct 8 | 9 | This code of conduct is developed for the virtual Bioc2020 conference. 10 | 11 | 12 | ## Social media policy 13 | 14 | Images and content from talks, workshops, and posters may be shared publicly through social media _unless_ the presenter asks for it not to be. To avoid confusion, presentations not to be shared should be labeled "Do Not Share" on each slide, as should be posters. 15 | 16 | ## The _Bioconductor_ conference aims to provide a supportive, collegial, and harassment-free environment 17 | 18 | _Bioconductor_ is dedicated to providing a supportive, collegial, and harassment-free 19 | conference experience for everyone, regardless of: 20 | * gender, gender identity and expression, sexual orientation, disability, 21 | physical appearance, body size, race, age, or religion. 22 | * intellectual position: approaches to data analysis, software preferences, coding style, scientific perspective, etc. 23 | 24 | The Virtual Event Code of Conduct applies to Bioc2020 virtual events and communications, including but not limited to the virtual platform, talks, workshops, poster sessions, social activities, slack, online and social media communications. We do not tolerate harassment, intimidation, or bullying of conference participants. Sexual language and imagery are not appropriate in presentations, communications, in online venues, including chats. 25 | 26 | Conference participants violating these rules may be sanctioned or expelled from the conference with no refund, 27 | at the discretion of the conference organizers. Our anti-harassment policy can be found at [https://bioc2020.bioconductor.org/code_of_conduct](https://bioc2020.bioconductor.org/code_of_conduct) 28 | 29 | ## Examples of unacceptable harassment, intimidation, and bullying behavior 30 | 31 | Harassment includes, but is not limited to: 32 | 33 | * Making comments in chats, to an audience or personally, that belittle or demean another person 34 | * Sharing sexual images online 35 | * Harassing photography or recording 36 | * Sustained disruption of talks or other events 37 | * Unwelcome sexual attention 38 | * Advocating for, or encouraging, any of the above behavior 39 | 40 | Intimidation and bullying include, but are not limited to: 41 | 42 | * Aggressive or browbeating behavior directed at someone during a public presentation 43 | * Mocking or insulting another person's intellect, work, perspective, or question/comment 44 | * Making reference to someone's gender, gender identity and expression, sexual orientation, disability, 45 | physical appearance, body size, race, age, religion, or other personal attributes in the context of a scientific 46 | discussion 47 | * Deliberately making someone feel unwelcome 48 | 49 | ### Enforcement 50 | 51 | Participants asked to stop any harassing behavior are expected to comply immediately. 52 | 53 | If a participant engages in harassing behavior, event organizers retain the right to take any actions to keep the event a welcoming environment for all participants. This includes warning the offender or expulsion from the conference with no refund. 54 | 55 | Event organizers may take action to redress anything designed to, or with the clear impact of, disrupting the event or making the environment hostile for any participants. 56 | 57 | We expect participants to follow these rules at all event venues and event-related online activities. 58 | 59 | ### Reporting 60 | 61 | If someone makes you or anyone else feel unsafe or unwelcome, please report it as soon as possible. 62 | Harassment and other code of conduct violations reduce the value of our event for everyone. 63 | We want you to be happy at our event. People like you make our event a better place. 64 | 65 | You can make a report either personally or anonymously. 66 | 67 | #### Anonymous or Non-anonymous Report 68 | 69 | You can make an anonymous or non-anonymous report here: [https://tinyurl.com/bioccomplaint](https://tinyurl.com/bioccomplaint). It is a free-form text box that will be forwarded to conference organizers. 70 | 71 | We can't follow up an anonymous report with you directly, but we will fully investigate it and take whatever action is necessary to prevent a recurrence. 72 | 73 | #### Personal Report 74 | 75 | You can make a personal report with any of the conference anti-harassment committee: Aedin Culhane, Levi Waldron, and Laurent Gatto. 76 | 77 | When taking a personal report, our staff will ensure you are safe and cannot be overheard. They may involve other event staff to ensure your report is managed properly. Once safe, we'll ask you to tell us about what happened. This can be upsetting, but we'll handle it as respectfully as possible, and you can bring someone to support you. You won't be asked to confront anyone, and we won't tell anyone who you are. 78 | 79 | Our team will be happy to help you contact hotel/venue security, local law enforcement, local support services, provide escorts, or otherwise assist you to feel safe for the duration of the event. We value your attendance. 80 | 81 | ### Code of Conduct violation reports 82 | 83 | * Email: [code-of-conduct@bioconductor.org](mailto:workshop@bioconductor.org?subject=BioC2019%20code-of-conduct) 84 | * Anonymous Code of Conduct violation reports: [https://tinyurl.com/bioccomplaint](https://tinyurl.com/bioccomplaint) 85 | * Law enforcement emergency number: 911 86 | 87 | ### Code of Conduct Committee 88 | 89 | | Photo | Name | 90 | |-------|------| 91 | | | [Aedin Culhane](mailto:aedin@jimmy.harvard.edu?subject=BioC2019%20code-of-conduct) | 92 | | | [Levi Waldron](mailto:lwaldron.research@gmail.com?subject=BioC2019%20Code-of-conduct) | 93 | | | [Laurent Gatto](mailto:laurent.gatto@uclouvain.be?subject=BioC2019%20Code-of-conduct) | 94 | 95 | 96 | 183 | -------------------------------------------------------------------------------- /docs/schedule.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | {% include header.md %} 6 | 7 | # Agenda 8 | 9 | All time is US Eastern Time. All sessions include Q&A time. 10 | 11 | 12 | | Time | Track | Name | 13 | |------------------------|----------|--------------------------------------------------------------------------------------------------------------------------------| 14 | | **Monday, 7/27/2020** | | 15 | 16 | 17 | 18 | 19 | | 20 | | 8:00 AM | Community | Open breakfast meeting | 21 | | 8:30 AM | Talk | [Talk, Martin Morgan, Introduction & Welcome](https://youtu.be/LJT9HjKiipU) | 22 | | 9:00 AM | Talk | [Keynote, Rafael Irizarry. Probabilistic Gene Expression Signatures for Single Cell RNA-seq Data](https://youtu.be/8MojYYkuLcM) | 23 | | 10:00 AM | Talk | [Contributed Talk 1, Yi Wang, Ting Huang, Simina Boca, Phillipe Boilleau](https://youtu.be/uCf24yYstKU) | 24 | | 11:00 AM | Workshop | [100: Levi Waldron, Public data resources in Bioconductor](https://youtu.be/wxY1I08Fz2o) | 25 | | 12:00 PM | Community | [Birds of a Feather: On Standards for Accessible and Interpretable Visualizations](https://youtu.be/gGkAvO4zGC8) | 26 | | 12:00 PM | Community | Talk with the BioC Core Team | 27 | | 1:00 PM | Workshop | [100: Chloe Mirzayi, A workshop for concepts of epidemiology](https://youtu.be/gRX7ybM6SmA) | 28 | | 2:00 PM | Workshop | [100: John Lawson, Annotating inter-sample DNA methylation and ATAC-seq variation with COCOA](https://youtu.be/raMA0IVWVUQ) | 29 | | 3:00 PM | Workshop | [100: Leonardo Collado-Torres, Human RNA-seq data from recount2 and related packages](https://youtu.be/EDe0e_VaENQ) | 30 | | 4:00 PM | Workshop | [100: James W. MacDonald, Introduction to Bioconductor annotation resources](https://youtu.be/QKGwf8pKb6A) | 31 | | 5:00 PM | Workshop | [100: Stefano Mangiola, A tidy transcriptomics introduction to RNA-Seq analyses](https://youtu.be/5Cgnpwv19Jk) | 32 | | **Tuesday, 7/28/2020** | | 33 | | 34 | | 8:00 AM | Community | Open breakfast meeting | 35 | | 9:00 AM | Workshop | [200: Ludwig Geistlinger, Functional enrichment analysis of high-throughput omics data](https://youtu.be/n0vVwuQSZkg) | 36 | | 10:00 AM | Workshop | [200: Haibo Liu, Best practices for ATAC-seq QC and data analysis](https://youtu.be/VZFUu_cJxyI) | 37 | | 11:00 AM | Workshop | [200: Ludwig Geistlinger, Marcel Ramos, Sehyun Oh, Copy number variation analysis with Bioconductor](https://youtu.be/MZL1HtMjyL4) | 38 | | 12:00 PM | Community | Birds of a Feather Talks | 39 | | 12:00 PM | Community | [Talk with the BioC Technical Advisory Board](https://youtu.be/QIByL02DSzI) | 40 | | 1:00 PM | Workshop | [200: Charlotte Soneson, Aaron Lun, Interactive visualization of SummarizedExperiment objects with iSEE](https://youtu.be/qmoJtL8b438) | 41 | | 2:00 PM | Talk | [Keynote, Kylie Bemis, Out-of-memory computing with matter](https://youtu.be/AQkAlkuhj70) | 42 | | 3:00 PM | Talk | [Contributed Talks 2, Daniel Bunis, Koen Van den Berge, F. William Townes. Lauren Hsu](https://youtu.be/TyHoVhDk9NU) | 43 | | 4:00 PM | Workshop | [200: Lihua Julie Zhu, Jianhong Ou, CRISPRseek for design target-specific gRNAs for the CRISPR genome editing system including base editor and prime editor](https://youtu.be/Kj2yzZ_45cU) | 44 | | 5:00 PM | Workshop | [200: Kai Hu, Integrated ChIP-seq data analysis workshop](https://youtu.be/EAxFrz_F4bg) | 45 | | **Wednesday, 7/29/2020** | | | 46 | | 8:00 AM | Community | [Presentation of the BioC Commuity Advisory Board](https://youtu.be/noHn5fEbBwA) | 47 | | 8:40 AM | Community | [Presentation of the BioC Awards Ceremony](https://youtu.be/noHn5fEbBwA) | 48 | 49 | | 9:00 AM | Talk | [Keynote, Corrie Painter, Count Me In, Partnering with patients to accelerate the pace of cancer research](https://youtu.be/Ip8_AHqeBXM) | 50 | | 10:00 AM | Community | [Birds of a Feather: CDSB Community Meeting](https://youtu.be/U-ZFWmSxSOE) | 51 | | 11:00 AM | Workshop | [200: Marcel Ramos, MultiAssayExperiment and curatedTCGAData Bioconductor 2020 workshop](https://youtu.be/Vh0hVVUKKFM) | 52 | | 12:00 PM | Poster | Poster Session A | 53 | | 1:00 PM | Workshop | [200: Aedin Culhane, Lauren Hsu, A introduction to matrix factorization, svd and principal component analysis](https://youtu.be/sP6rry9Yf2w) | 54 | | 2:00 PM | Talk | [Keynote, Fei Chen, Slide-seq: a platform for understanding cellular circuits in tissue](https://youtu.be/UwoSLWlyC74) | 55 | | 3:00 PM | Talk | [Contributed Talks 3, Lukas M. Weber, Dario Righelli, Lambda Lu, Ellis Patrick](https://youtu.be/bD_zaBpzCKY) | 56 | | 4:00 PM | Workshop | [200: Petr Smirnov, Arvind Mer, Christopher Eeles, A workshop on discovering biomarkers from high through put response screens](https://youtu.be/i2_b6JeN6Vc) | 57 | | 5:00 PM | Workshop | [500: Qian Liu, Bioconductor toolchain for usage and development of reproducible bioinformatics pipelines in CWL](https://youtu.be/JCxoQwz-95s) | 58 | | **Thursday, 7/30/3030** | | | 59 | | 8:00 AM | Workshop | [500: Peter F. Hickey, Effectively Using the DelayedArray Framework to Support the Analysis of Large Datasets](https://youtu.be/0x7Q4oyM7uA) | 60 | | 9:00 AM | Workshop | [100: Sehyun Oh, Levi Waldron, Cloud-based genomics using Terra/AnVIL](https://youtu.be/KYBDeDIf5tQ) | 61 | | 10:00 AM | Workshop | [500: Mikhail Dozmorov, Detection of differentially interacting chromatin regions from multiple Hi-C datasets](https://youtu.be/f4RaQVwPMzo) | 62 | | 11:00 AM | Workshop | [500: Kayla Interdonato, Material on how to create and submit a package to Bioconductor](https://youtu.be/fq3kx6FZ6lY) | 63 | | 12:00 PM | Community | Birds of a Feather: Ten simple rules for thriving in bioinformatics research | 64 | | 12:00 PM | Community | [Talk with the BioC Core Team](https://youtu.be/a0EB893-O_A) | 65 | | 1:00 PM | Talk | [Lightning Talks, Session #2](https://youtu.be/DOYepK47RH8) | 66 | | 2:00 PM | Talk | [Keynote, X Shirley Liu, Computational modeling of protein degradation in tumors](https://youtu.be/WhNFqi5eP3I) | 67 | | 3:00 PM | Talk | [Contributed Talks 4, Anthony Mammoliti, Shradda Pai, Gabriel Odom. Ruth Schmidt](https://youtu.be/GdHB9jwios8) | 68 | | 4:00 PM | Workshop | 500: Anthony Federico, Efficient, scalable, and reproducible enrichment workflows | 69 | | 4:00 PM | Community | [Birds of a Feather: On Standards for Accessible and Interpretable Visualizations - Follow Up](https://youtu.be/M18OL-t1AKs) | 70 | | 5:00 PM | Workshop | [200: Michael Love, Importing alevin scRNA-seq counts into R/Bioconductor](https://youtu.be/FL5GFXeBuvc) | 71 | | **Friday, 7/31/2020** | | | 72 | | 8:00 AM | Poster | Poster Session B | 73 | | 9:00 AM | Talk | [Keynote, Caroline Uhler, Multi-Domain Data Integration: From Observations to Mechanistic Insights](https://youtu.be/EyUrToDdMWY) | 74 | | 10:00 AM | Talk | [Contributed Talks 5, Emma Jablonski, Shian Su, Hena Ramay, Jayaram Kancheria](https://youtu.be/MToJ_oOXm_c) | 75 | | 11:00 AM | Workshop | [500: Kelly Street, Koen Van den Berge, Trajectory inference across conditions: differential expression and differential progression](https://youtu.be/Fbd08bIv4yk) | 76 | | 12:00 PM | Community | Birds of a Feather: Reproducible environments for integrated computational workflows | 77 | | 12:00 PM | Community | [Talk with the BioC Core Team](https://youtu.be/hf2qzpK81II) | 78 | | 1:00 PM | Talk | [Lightning Talks](https://youtu.be/ameCkKFvm0I) | 79 | | 2:00 PM | Talk | [Keynote, Aaron Lun, Making the infrastructure sausage: tales of Bioconductor package development](https://youtu.be/wQJbSh-NHeg) | 80 | | 3:00 PM | Talk | [Contributed Talks 6, Charlotte Soneson, Davide Risso, Anthony Sonrel, Stephanie Hicks](https://youtu.be/09DxXqZ2KJo) | 81 | | 4:00 PM | Talk | Closing Remarks | 82 | | 4:30 PM | | Happy Hour | 83 | 84 | 85 | 86 | -------------------------------------------------------------------------------- /docs/workshops.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | {% include header.md %} 6 | 7 | ## Workshops 8 | 9 | Join the *Bioconductor* 10 | [\#bioc2020](https://community-bioc.slack.com/archives/CLAEUFVAA) and 11 | [\#bioc2020-workshops](https://community-bioc.slack.com/archives/C015QR5FCGN) 12 | channels for up-to-date information. 13 | 14 | ### 100 Level Workshops 15 | 16 | | Workshop | Source | Docker | 17 | | :----------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------- | :---------------------------------------------------------------------------------------------------------------------- | 18 | | [Introduction to Bioconductor annotation resources](https://jmacdon.github.io/Bioc2020Anno/) | [![GH](images/GitHub-Mark-32px.png)](https://github.com/jmacdon/Bioc2020Anno) | [![Docker](images/docker_icon.png)](https://hub.docker.com/repository/docker/jmacdon/bioc2020anno) | 19 | | [A Tidy Transcriptomics introduction to RNA-Seq analyses](https://stemangiola.github.io/bioc_2020_tidytranscriptomics/) | [![GH](images/GitHub-Mark-32px.png)](https://github.com/stemangiola/bioc_2020_tidytranscriptomics) | [![Docker](images/docker_icon.png)](https://hub.docker.com/repository/docker/stemangiola/bioc_2020_tidytranscriptomics) | 20 | | [Public Data Resources in Bioconductor](https://waldronlab.io/PublicDataResources/) | [![GH](images/GitHub-Mark-32px.png)](https://github.com/waldronlab/PublicDataResources) | [![Docker](images/docker_icon.png)](https://hub.docker.com/repository/docker/waldronlab/publicdataresources) | 21 | | [Annotating inter-sample DNA methylation and ATAC-seq variation with COCOA](http://databio.org/cocoa_workshop_bioc2020/) | [![GH](images/GitHub-Mark-32px.png)](https://github.com/databio/cocoa_workshop_bioc2020) | [![Docker](images/docker_icon.png)](https://hub.docker.com/repository/docker/databio/cocoa_workshop_bioc2020) | 22 | | [Human RNA-seq data from recount2 and related packages](https://LieberInstitute.github.io/recountWorkshop2020/) | [![GH](images/GitHub-Mark-32px.png)](https://github.com/LieberInstitute/recountWorkshop2020) | [![Docker](images/docker_icon.png)](https://hub.docker.com/repository/docker/lcollado/recountworkshop2020) | 23 | | [Cloud-based Genomics using Terra/AnVIL](https://waldronlab.github.io/AnVILWorkshop/) | [![GH](images/GitHub-Mark-32px.png)](https://github.com/waldronlab/AnVILWorkshop) | [![Docker](images/docker_icon.png)](https://hub.docker.com/repository/docker/shbrief/anvilworkshop) | 24 | | [Epidemiology for Bioinformaticians Workshop](https://cmirzayi.github.io/EpiForBioWorkshop2020/) | [![GH](images/GitHub-Mark-32px.png)](https://github.com/cmirzayi/EpiForBioWorkshop2020) | [![Docker](images/docker_icon.png)](https://hub.docker.com/repository/docker/cmirzayi/epiforbioworkshop2020) | 25 | 26 | 27 | 28 | ### 200 Level Workshops 29 | 30 | | Workshop | Source | Docker | 31 | | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | :--------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------- | 32 | | [Best practices for ATAC-seq QC and data analysis](https://haibol2016.github.io/ATACseqQCWorkshop/) | [![GH](images/GitHub-Mark-32px.png)](https://github.com/haibol2016/ATACseqQCWorkshop) | [![Docker](images/docker_icon.png)](https://hub.docker.com/repository/docker/nemat1976/atacseqqcworkshop_2020) | 33 | | [Interactive Visualization of SummarizedExperiment Objects with iSEE](https://iSEE.github.io/iSEEWorkshop2020) | [![GH](images/GitHub-Mark-32px.png)](https://github.com/iSEE/iSEEWorkshop2020) | [![Docker](images/docker_icon.png)](https://hub.docker.com/repository/docker/iseedevelopers/iseeworkshop2020) | 34 | | [Functional enrichment analysis of high-throughput omics data](https://waldronlab.github.io/enrichOmics/) | [![GH](images/GitHub-Mark-32px.png)](https://github.com/waldronlab/enrichOmics) | [![Docker](images/docker_icon.png)](https://hub.docker.com/repository/docker/ludwigg/enrichomics) | 35 | | [Copy number variation analysis with Bioconductor](https://waldronlab.github.io/CNVWorkshop) | [![GH](images/GitHub-Mark-32px.png)](https://github.com/waldronlab/CNVWorkshop) | [![Docker](images/docker_icon.png)](https://hub.docker.com/repository/docker/ludwigg/cnvworkshop) | 36 | | [MultiAssayExperiment and curatedTCGAData Bioconductor 2020 Workshop](https://waldronlab.github.io/MultiAssayWorkshop/) | [![GH](images/GitHub-Mark-32px.png)](https://github.com/waldronlab/MultiAssayWorkshop) | [![Docker](images/docker_icon.png)](https://hub.docker.com/repository/docker/mr148/multiassayworkshop) | 37 | | [CRISPRseek and GUIDEseq for designing target-specific gRNAs for the CRISPR genome editing system; Motif analysis with motifStack and dagLogo](https://LihuaJulieZhu.github.io/CRISPRseekGUIDEseqBioc2020Workshop/) | [![GH](images/GitHub-Mark-32px.png)](https://github.com/LihuaJulieZhu/CRISPRseekGUIDEseqBioc2020Workshop/) | [![Docker](images/docker_icon.png)](https://hub.docker.com/repository/docker/lihuajuliezhu/crisprseekguideseqbioc2020workshop) | 38 | | [Integrated ChIP-seq analysis workshop](https://hukai916.github.io/IntegratedChIPseqWorkshop/) | [![GH](images/GitHub-Mark-32px.png)](https://github.com/hukai916/IntegratedChIPseqWorkshop) | [![Docker](images/docker_icon.png)](https://hub.docker.com/repository/docker/hukai916/integratedchipseqanalysis_workshop) | 39 | | [An introduction to matrix factorization and principal component analysis in R](https://aedin.github.io/PCAworkshop/) | [![GH](images/GitHub-Mark-32px.png)](https://github.com/aedin/PCAworkshop) | [![Docker](images/docker_icon.png)](https://hub.docker.com/repository/docker/aculhane/pcabiocworkshop2020) | 40 | | [A workshop on discovering biomarkers from high through put response screens](https://bhklab.github.io/bioc2020workshop) | [![GH](images/GitHub-Mark-32px.png)](https://github.com/bhklab/bioc2020workshop) | [![Docker](images/docker_icon.png)](https://hub.docker.com/repository/docker/bhklab/gxbioc2020workshop) | 41 | | [Importing alevin scRNA-seq counts into R/Bioconductor](https://mikelove.github.io/alevin2bioc/) | [![GH](images/GitHub-Mark-32px.png)](https://github.com/mikelove/alevin2bioc) | [![Docker](images/docker_icon.png)](https://hub.docker.com/repository/docker/mikelove/alevin2bioc) | 42 | 43 | 44 | 45 | ### 500 Level Workshops 46 | 47 | | Workshop | Source | Docker | 48 | | :----------------------------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------- | :---------------------------------------------------------------------------------------------------------------------- | 49 | | [Material on how to create and submit a package to Bioconductor](https://kayla-morrell.github.io/CreateAPackage/) | [![GH](images/GitHub-Mark-32px.png)](https://github.com/Kayla-Morrell/CreateAPackage) | [![Docker](images/docker_icon.png)](https://hub.docker.com/repository/docker/kaylainterdonato01/createapackage) | 50 | | [Bioconductor toolchain for usage and development of reproducible bioinformatics pipelines in CWL](https://Liubuntu.github.io/Bioc2020RCWL) | [![GH](images/GitHub-Mark-32px.png)](https://github.com/Liubuntu/Bioc2020RCWL) | [![Docker](images/docker_icon.png)](https://hub.docker.com/repository/docker/liubuntu/bioc2020rcwl) | 51 | | [Effectively Using the DelayedArray Framework to Support the Analysis of Large Datasets](https://petehaitch.github.io/BioC2020_DelayedArray_workshop/) | [![GH](images/GitHub-Mark-32px.png)](https://github.com/PeteHaitch/BioC2020_DelayedArray_workshop) | [![Docker](images/docker_icon.png)](https://hub.docker.com/repository/docker/petehaitch/bioc2020_delayedarray_workshop) | 52 | | [Detection of Differentially Interacting Chromatin Regions From Multiple Hi-C Datasets](https://mdozmorov.github.io/HiCcompareWorkshop/) | [![GH](images/GitHub-Mark-32px.png)](https://github.com/mdozmorov/HiCcompareWorkshop) | [![Docker](images/docker_icon.png)](https://hub.docker.com/repository/docker/mdozmorov/hiccompareworkshop) | 53 | | [Trajectory inference across conditions: differential expression and differential progression](https://kstreet13.github.io/bioc2020trajectories) | [![GH](images/GitHub-Mark-32px.png)](https://github.com/kstreet13/bioc2020trajectories) | [![Docker](images/docker_icon.png)](https://hub.docker.com/repository/docker/kstreet13/bioc2020trajectories) | 54 | | [Efficient, Scalable, and Reproducible Enrichment Workflows](https://montilab.github.io/hypeR-workshop/) | [![GH](images/GitHub-Mark-32px.png)](https://github.com/montilab/hypeR-workshop) | [![Docker](images/docker_icon.png)](https://hub.docker.com/repository/docker/montilab/hyperworkshop) | 55 | 56 | 57 | 58 | Workshops with preinstalled dependencies can be run locally using 59 | Docker. 60 | 61 | - `docker pull ` will pull the latest image 62 | for a given ``. 63 | - `docker run -e PASSWORD= -p 8787:8787 -d --rm 64 | ` will publish a container’s port 8787 to the host 65 | (`-p`), run in the detached mode (`-d`), and cleanly remove the 66 | container when it is stopped (`--rm`). 67 | - Open and login with username `rstudio` and 68 | password ``. 69 | - Run `browseVignettes(package = "")`. Click on one of the 70 | links, “HTML”, “source”, “R code”. 71 | - In case of “`The requested page was not found`” error, add 72 | `help/` to the URL right after the hostname. This is a [known 73 | bug](https://github.com/rocker-org/rocker-versioned/issues/178). 74 | 75 | Advanced: Use `-v $(pwd):/home/rstudio` argument to map your local 76 | directory to the container. Use `-e DISABLE_AUTH=true`, if you want 77 | passwordless login to RStudio. On Windows, you may need to provide your 78 | localhost IP address like `http://191.163.92.108:8787/` - find it using 79 | `docker-machine ip default` in Docker’s terminal. 80 | 81 | Example: 82 | 83 | docker pull waldronlab/publicdataresources:latest 84 | docker run -e PASSWORD=bioconductor -p 8787:8787 -d --rm waldronlab/publicdataresources 85 | # Open http://localhost:8787 and login using rstudio/bioconductor credentials 86 | # Run browseVignettes(package = "PublicDataResources") 87 | # Open http://localhost:8787/help/library/PublicDataResources/doc/PublicDataResources.html 88 | docker ps -a # List all running containers 89 | docker stop # or, - Stop a container 90 | 91 | Workshop packages were created using the 92 | [BuildABiocWorkshop2020](https://github.com/seandavi/BuildABiocWorkshop2020) 93 | template. 94 | 95 | *NOTE*. All workshops should include a valid `DESCRIPTION` file with the 96 | following fields: 97 | 98 | - `URL:` - the GitHub pages URL 99 | (`https://username.github.io/repository`) 100 | - `DockerImage:` - the Docker repository slug in lowercase with 101 | (optional) tag (`username/repository:tag`) 102 | -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-700/Noto-Sans-700.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 12 | 13 | 14 | 15 | 16 | 18 | 21 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 35 | 36 | 38 | 41 | 42 | 44 | 47 | 48 | 51 | 54 | 56 | 58 | 59 | 60 | 61 | 64 | 67 | 68 | 70 | 71 | 72 | 73 | 74 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 85 | 86 | 88 | 89 | 91 | 92 | 93 | 94 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 107 | 109 | 110 | 112 | 114 | 115 | 117 | 118 | 119 | 120 | 121 | 122 | 124 | 125 | 127 | 129 | 131 | 132 | 134 | 135 | 136 | 137 | 139 | 140 | 141 | 142 | 144 | 145 | 147 | 149 | 150 | 151 | 153 | 154 | 156 | 157 | 158 | 161 | 163 | 166 | 168 | 169 | 170 | 171 | 174 | 175 | 177 | 178 | 179 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 189 | 190 | 192 | 194 | 197 | 199 | 200 | 201 | 203 | 205 | 207 | 209 | 210 | 212 | 213 | 214 | 215 | 217 | 218 | 219 | 220 | 222 | 223 | 225 | 227 | 229 | 231 | 234 | 237 | 238 | 240 | 242 | 244 | 246 | 248 | 249 | 250 | 253 | 255 | 257 | 259 | 262 | 265 | 268 | 271 | 273 | 275 | 277 | 279 | 282 | 283 | 284 | 285 | 287 | 289 | 291 | 293 | 295 | 297 | 300 | 303 | 305 | 307 | 309 | 311 | 313 | 315 | 317 | 319 | 321 | 322 | 323 | 324 | 325 | 326 | 328 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | --------------------------------------------------------------------------------