{{ .Title }}
38 |{{ .Summary }}
57 | 59 |├── docs ├── img │ ├── organizers │ │ ├── foo.txt │ │ ├── koki.png │ │ ├── kozo.png │ │ ├── matt.png │ │ ├── sun.jpg │ │ ├── tom.png │ │ ├── Aedin.jpg │ │ ├── Laurent.jpg │ │ ├── mahmoud.png │ │ ├── marcel.png │ │ ├── peter.png │ │ ├── satoshi.png │ │ ├── xueyi.png │ │ ├── xyuei.png │ │ ├── JianqiangSun.jpg │ │ └── LeviWaldron.jpg │ ├── logo.png │ ├── photogrid.jpg │ ├── texture-bw.png │ ├── clients │ │ ├── RIKEN.png │ │ ├── csl.png │ │ ├── logo.png │ │ ├── tayo.png │ │ ├── wehi.png │ │ ├── ABACBS.png │ │ ├── F1000R.png │ │ ├── logo-02.png │ │ ├── tayo-logo.PNG │ │ ├── wehi-logo-2020.png │ │ ├── F1000R_logo_crop.png │ │ ├── ABACBS+logo+folded+white.png │ │ └── logo.svg │ ├── speakers │ │ ├── Andy.png │ │ ├── Lori.png │ │ ├── Shian.jpg │ │ ├── avatar.png │ │ ├── ErqiangHu.jpg │ │ ├── Soroorh.png │ │ ├── JananiRavi.jpeg │ │ ├── BelindaPhipson.jpg │ │ ├── DanielaWitten.jpg │ │ ├── HiroshiTsugawa.gif │ │ ├── KokiTsuyuzaki.jpg │ │ ├── LuciaPeixoto.jpg │ │ ├── MelissaWilson.jpg │ │ ├── NiteshTuraga.jpeg │ │ ├── TatsuyaAmano.jpeg │ │ ├── StefanoAndMaria.png │ │ ├── StefanoMangiola.png │ │ ├── TakeyaKasukawa.jfif │ │ ├── feng-hao-harry.jpeg │ │ ├── ErqiangAndTizanzhi.png │ │ └── GabrieladeQueiroz.jpg │ ├── texture-green.png │ ├── texture-violet.png │ ├── GitHub-Mark-32px.png │ ├── carousel │ │ ├── BioC2021.png │ │ ├── BioC2021-v2.png │ │ ├── BioC2021-v3.png │ │ ├── BioCAsia2021.png │ │ ├── BioCAsia2021-v2.png │ │ ├── BioCAsia2021-v3.png │ │ ├── template-tablets.png │ │ ├── BiocAsia2021Hokusai.png │ │ ├── template-easy-code.png │ │ ├── BioC2020-drawing-MtRainier.jpg │ │ ├── BioC2020-drawing-Spaceneedle.jpg │ │ └── BioC2020-drawing-MtRainier-Spaceneedle.jpg │ ├── texture-turquoise.png │ └── docker-vertical-logo-monochromatic.png ├── CNAME ├── css │ ├── custom.css │ ├── owl.theme.css │ └── owl.carousel.css ├── tags │ ├── page │ │ └── 1 │ │ │ └── index.html │ └── index.xml ├── posts │ ├── page │ │ └── 1 │ │ │ └── index.html │ └── index.xml ├── categories │ ├── page │ │ └── 1 │ │ │ └── index.html │ └── index.xml ├── sitemap.xml ├── js │ ├── gmaps.init.js │ └── respond.min.js └── 404.html ├── netlify.toml ├── data ├── clients │ ├── 5.yaml │ ├── 6.yaml │ ├── 3.yaml │ ├── 4.yaml │ ├── 1.yaml │ └── 2.yaml ├── features │ ├── print.yaml │ ├── uiux.yaml │ ├── email.yaml │ ├── seo.yaml │ ├── consulting.yaml │ └── webdesign.yaml ├── carousel │ ├── multipurpose2.yaml │ ├── multipurpose1.yaml │ └── multipurpose3.yaml └── speakers │ ├── 91.yaml │ ├── 5.yaml │ ├── 6.yaml │ ├── 9.yaml │ ├── 92.yaml │ ├── 95.yaml │ ├── 8.yaml │ ├── 94.yaml │ ├── 4.yaml │ ├── 7.yaml │ ├── 3.yaml │ ├── 93.yaml │ ├── 2.yaml │ └── 1.yaml ├── themes └── hugo-universal-theme │ ├── archetypes │ └── default.md │ ├── .gitignore │ ├── .eslintignore │ ├── .eslintrc.yml │ ├── layouts │ ├── partials │ │ ├── sidebar.html │ │ ├── breadcrumbs.html │ │ ├── page.html │ │ ├── top.html │ │ ├── map.html │ │ ├── widgets │ │ │ ├── tags.html │ │ │ ├── categories.html │ │ │ └── search.html │ │ ├── carousel.html │ │ ├── see_more.html │ │ ├── features.html │ │ ├── scripts.html │ │ ├── clients.html │ │ ├── testimonials.html │ │ ├── contact.html │ │ ├── nav.html │ │ ├── recent_posts.html │ │ ├── speakers.html │ │ ├── footer.html │ │ └── head.html │ ├── archetypes │ │ └── default.md │ ├── 404.html │ ├── page │ │ └── single.html │ ├── _default │ │ ├── single.html │ │ └── list.html │ └── index.html │ ├── static │ ├── css │ │ ├── custom.css │ │ ├── owl.theme.css │ │ └── owl.carousel.css │ └── js │ │ ├── gmaps.init.js │ │ └── respond.min.js │ ├── package.json │ ├── .travis.yml │ ├── theme.toml │ ├── LICENSE │ └── i18n │ ├── da.yaml │ ├── cs.yaml │ ├── zh.yaml │ ├── ja.yaml │ ├── en.yaml │ ├── sv.yaml │ ├── id.yaml │ ├── nl.yaml │ ├── it.yaml │ ├── pt-br.yaml │ ├── ru.yaml │ ├── de.yaml │ ├── fr.yaml │ ├── es.yaml │ └── ca.yaml ├── static └── img │ ├── logo.png │ ├── clients │ ├── csl.png │ ├── RIKEN.png │ ├── logo.png │ ├── tayo.png │ ├── wehi.png │ ├── ABACBS.png │ ├── F1000R.png │ └── logo.svg │ ├── photogrid.jpg │ ├── texture-bw.png │ ├── speakers │ ├── Andy.png │ ├── Lori.png │ ├── Shian.jpg │ ├── Soroorh.png │ ├── avatar.png │ ├── ErqiangHu.jpg │ ├── JananiRavi.jpeg │ ├── BelindaPhipson.jpg │ ├── HiroshiTsugawa.gif │ ├── KokiTsuyuzaki.jpg │ ├── NiteshTuraga.jpeg │ ├── TatsuyaAmano.jpeg │ ├── StefanoAndMaria.png │ ├── StefanoMangiola.png │ ├── TakeyaKasukawa.jfif │ ├── feng-hao-harry.jpeg │ └── ErqiangAndTizanzhi.png │ ├── texture-green.png │ ├── GitHub-Mark-32px.png │ ├── organizers │ ├── koki.png │ ├── kozo.png │ ├── matt.png │ ├── peter.png │ ├── sun.jpg │ ├── tom.png │ ├── xueyi.png │ ├── mahmoud.png │ ├── marcel.png │ └── satoshi.png │ ├── texture-violet.png │ ├── texture-turquoise.png │ ├── carousel │ ├── BioCAsia2021.png │ ├── BioCAsia2021-v2.png │ ├── BioCAsia2021-v3.png │ ├── template-tablets.png │ ├── BiocAsia2021Hokusai.png │ └── template-easy-code.png │ └── docker-vertical-logo-monochromatic.png ├── content ├── schedule_iframe.md ├── posts │ └── my-first-post.md ├── contact.md ├── jobs.md ├── schedule.md ├── registration.md ├── organizers.md ├── conferences.md ├── submissions.md ├── code-Mandarin.md ├── code-Japanese.md ├── code.md └── contributions.md ├── archetypes └── default.md ├── .gitignore ├── layouts ├── partials │ ├── iframe.html │ └── speakers.html └── shortcodes │ └── iframe.html ├── LICENSE ├── README.md └── config.toml /docs/img/organizers/foo.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | biocasia2021.bioconductor.org -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- 1 | [build.environment] 2 | HUGO_VERSION = "0.76.5" 3 | 4 | -------------------------------------------------------------------------------- /data/clients/5.yaml: -------------------------------------------------------------------------------- 1 | name: "tayo" 2 | image: "img/clients/tayo.png" 3 | url: "https://tayo.jp/" 4 | -------------------------------------------------------------------------------- /docs/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/logo.png -------------------------------------------------------------------------------- /themes/hugo-universal-theme/archetypes/default.md: -------------------------------------------------------------------------------- 1 | +++ 2 | tags = [] 3 | categories = [] 4 | +++ -------------------------------------------------------------------------------- /data/clients/6.yaml: -------------------------------------------------------------------------------- 1 | name: "CSL" 2 | image: "img/clients/csl.png" 3 | url: "https://www.csl.com/" 4 | -------------------------------------------------------------------------------- /static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/logo.png -------------------------------------------------------------------------------- /themes/hugo-universal-theme/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | public/ 3 | npm-debug.log 4 | /node_modules/* 5 | -------------------------------------------------------------------------------- /data/clients/3.yaml: -------------------------------------------------------------------------------- 1 | name: "WEHI" 2 | image: "img/clients/wehi.png" 3 | url: "https://www.wehi.edu.au/" 4 | -------------------------------------------------------------------------------- /data/clients/4.yaml: -------------------------------------------------------------------------------- 1 | name: "RIKEN" 2 | image: "img/clients/RIKEN.png" 3 | url: "https://www.riken.jp/" 4 | -------------------------------------------------------------------------------- /docs/img/photogrid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/photogrid.jpg -------------------------------------------------------------------------------- /docs/img/texture-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/texture-bw.png -------------------------------------------------------------------------------- /data/clients/1.yaml: -------------------------------------------------------------------------------- 1 | name: "ABACBS" 2 | image: "img/clients/ABACBS.png" 3 | url: "https://www.abacbs.org/" 4 | -------------------------------------------------------------------------------- /docs/img/clients/RIKEN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/clients/RIKEN.png -------------------------------------------------------------------------------- /docs/img/clients/csl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/clients/csl.png -------------------------------------------------------------------------------- /docs/img/clients/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/clients/logo.png -------------------------------------------------------------------------------- /docs/img/clients/tayo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/clients/tayo.png -------------------------------------------------------------------------------- /docs/img/clients/wehi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/clients/wehi.png -------------------------------------------------------------------------------- /docs/img/speakers/Andy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/speakers/Andy.png -------------------------------------------------------------------------------- /docs/img/speakers/Lori.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/speakers/Lori.png -------------------------------------------------------------------------------- /docs/img/texture-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/texture-green.png -------------------------------------------------------------------------------- /static/img/clients/csl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/clients/csl.png -------------------------------------------------------------------------------- /static/img/photogrid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/photogrid.jpg -------------------------------------------------------------------------------- /static/img/texture-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/texture-bw.png -------------------------------------------------------------------------------- /themes/hugo-universal-theme/.eslintignore: -------------------------------------------------------------------------------- 1 | **/*.min.js 2 | **/owl.*.js 3 | **/jquery.*.js 4 | **/hpneo.*.js 5 | -------------------------------------------------------------------------------- /content/schedule_iframe.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Schedule" 3 | description = "Schedule" 4 | +++ 5 | 6 | {{< iframe >}} 7 | -------------------------------------------------------------------------------- /docs/img/clients/ABACBS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/clients/ABACBS.png -------------------------------------------------------------------------------- /docs/img/clients/F1000R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/clients/F1000R.png -------------------------------------------------------------------------------- /docs/img/clients/logo-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/clients/logo-02.png -------------------------------------------------------------------------------- /docs/img/organizers/koki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/organizers/koki.png -------------------------------------------------------------------------------- /docs/img/organizers/kozo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/organizers/kozo.png -------------------------------------------------------------------------------- /docs/img/organizers/matt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/organizers/matt.png -------------------------------------------------------------------------------- /docs/img/organizers/sun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/organizers/sun.jpg -------------------------------------------------------------------------------- /docs/img/organizers/tom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/organizers/tom.png -------------------------------------------------------------------------------- /docs/img/speakers/Shian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/speakers/Shian.jpg -------------------------------------------------------------------------------- /docs/img/speakers/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/speakers/avatar.png -------------------------------------------------------------------------------- /docs/img/texture-violet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/texture-violet.png -------------------------------------------------------------------------------- /static/img/clients/RIKEN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/clients/RIKEN.png -------------------------------------------------------------------------------- /static/img/clients/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/clients/logo.png -------------------------------------------------------------------------------- /static/img/clients/tayo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/clients/tayo.png -------------------------------------------------------------------------------- /static/img/clients/wehi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/clients/wehi.png -------------------------------------------------------------------------------- /static/img/speakers/Andy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/speakers/Andy.png -------------------------------------------------------------------------------- /static/img/speakers/Lori.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/speakers/Lori.png -------------------------------------------------------------------------------- /static/img/texture-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/texture-green.png -------------------------------------------------------------------------------- /docs/img/GitHub-Mark-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/GitHub-Mark-32px.png -------------------------------------------------------------------------------- /docs/img/carousel/BioC2021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/carousel/BioC2021.png -------------------------------------------------------------------------------- /docs/img/clients/tayo-logo.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/clients/tayo-logo.PNG -------------------------------------------------------------------------------- /docs/img/organizers/Aedin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/organizers/Aedin.jpg -------------------------------------------------------------------------------- /docs/img/organizers/Laurent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/organizers/Laurent.jpg -------------------------------------------------------------------------------- /docs/img/organizers/mahmoud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/organizers/mahmoud.png -------------------------------------------------------------------------------- /docs/img/organizers/marcel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/organizers/marcel.png -------------------------------------------------------------------------------- /docs/img/organizers/peter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/organizers/peter.png -------------------------------------------------------------------------------- /docs/img/organizers/satoshi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/organizers/satoshi.png -------------------------------------------------------------------------------- /docs/img/organizers/xueyi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/organizers/xueyi.png -------------------------------------------------------------------------------- /docs/img/organizers/xyuei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/organizers/xyuei.png -------------------------------------------------------------------------------- /docs/img/speakers/ErqiangHu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/speakers/ErqiangHu.jpg -------------------------------------------------------------------------------- /docs/img/speakers/Soroorh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/speakers/Soroorh.png -------------------------------------------------------------------------------- /docs/img/texture-turquoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/texture-turquoise.png -------------------------------------------------------------------------------- /static/img/GitHub-Mark-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/GitHub-Mark-32px.png -------------------------------------------------------------------------------- /static/img/clients/ABACBS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/clients/ABACBS.png -------------------------------------------------------------------------------- /static/img/clients/F1000R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/clients/F1000R.png -------------------------------------------------------------------------------- /static/img/organizers/koki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/organizers/koki.png -------------------------------------------------------------------------------- /static/img/organizers/kozo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/organizers/kozo.png -------------------------------------------------------------------------------- /static/img/organizers/matt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/organizers/matt.png -------------------------------------------------------------------------------- /static/img/organizers/peter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/organizers/peter.png -------------------------------------------------------------------------------- /static/img/organizers/sun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/organizers/sun.jpg -------------------------------------------------------------------------------- /static/img/organizers/tom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/organizers/tom.png -------------------------------------------------------------------------------- /static/img/organizers/xueyi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/organizers/xueyi.png -------------------------------------------------------------------------------- /static/img/speakers/Shian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/speakers/Shian.jpg -------------------------------------------------------------------------------- /static/img/speakers/Soroorh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/speakers/Soroorh.png -------------------------------------------------------------------------------- /static/img/speakers/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/speakers/avatar.png -------------------------------------------------------------------------------- /static/img/texture-violet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/texture-violet.png -------------------------------------------------------------------------------- /docs/img/carousel/BioC2021-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/carousel/BioC2021-v2.png -------------------------------------------------------------------------------- /docs/img/carousel/BioC2021-v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/carousel/BioC2021-v3.png -------------------------------------------------------------------------------- /docs/img/speakers/JananiRavi.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/speakers/JananiRavi.jpeg -------------------------------------------------------------------------------- /static/img/organizers/mahmoud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/organizers/mahmoud.png -------------------------------------------------------------------------------- /static/img/organizers/marcel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/organizers/marcel.png -------------------------------------------------------------------------------- /static/img/organizers/satoshi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/organizers/satoshi.png -------------------------------------------------------------------------------- /static/img/speakers/ErqiangHu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/speakers/ErqiangHu.jpg -------------------------------------------------------------------------------- /static/img/texture-turquoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/texture-turquoise.png -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "{{ replace .Name "-" " " | title }}" 3 | date: {{ .Date }} 4 | draft: true 5 | --- 6 | 7 | -------------------------------------------------------------------------------- /docs/img/carousel/BioCAsia2021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/carousel/BioCAsia2021.png -------------------------------------------------------------------------------- /docs/img/clients/wehi-logo-2020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/clients/wehi-logo-2020.png -------------------------------------------------------------------------------- /docs/img/organizers/JianqiangSun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/organizers/JianqiangSun.jpg -------------------------------------------------------------------------------- /docs/img/organizers/LeviWaldron.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/organizers/LeviWaldron.jpg -------------------------------------------------------------------------------- /docs/img/speakers/BelindaPhipson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/speakers/BelindaPhipson.jpg -------------------------------------------------------------------------------- /docs/img/speakers/DanielaWitten.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/speakers/DanielaWitten.jpg -------------------------------------------------------------------------------- /docs/img/speakers/HiroshiTsugawa.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/speakers/HiroshiTsugawa.gif -------------------------------------------------------------------------------- /docs/img/speakers/KokiTsuyuzaki.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/speakers/KokiTsuyuzaki.jpg -------------------------------------------------------------------------------- /docs/img/speakers/LuciaPeixoto.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/speakers/LuciaPeixoto.jpg -------------------------------------------------------------------------------- /docs/img/speakers/MelissaWilson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/speakers/MelissaWilson.jpg -------------------------------------------------------------------------------- /docs/img/speakers/NiteshTuraga.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/speakers/NiteshTuraga.jpeg -------------------------------------------------------------------------------- /docs/img/speakers/TatsuyaAmano.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/speakers/TatsuyaAmano.jpeg -------------------------------------------------------------------------------- /static/img/carousel/BioCAsia2021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/carousel/BioCAsia2021.png -------------------------------------------------------------------------------- /static/img/speakers/JananiRavi.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/speakers/JananiRavi.jpeg -------------------------------------------------------------------------------- /docs/img/carousel/BioCAsia2021-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/carousel/BioCAsia2021-v2.png -------------------------------------------------------------------------------- /docs/img/carousel/BioCAsia2021-v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/carousel/BioCAsia2021-v3.png -------------------------------------------------------------------------------- /docs/img/carousel/template-tablets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/carousel/template-tablets.png -------------------------------------------------------------------------------- /docs/img/clients/F1000R_logo_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/clients/F1000R_logo_crop.png -------------------------------------------------------------------------------- /docs/img/speakers/StefanoAndMaria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/speakers/StefanoAndMaria.png -------------------------------------------------------------------------------- /docs/img/speakers/StefanoMangiola.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/speakers/StefanoMangiola.png -------------------------------------------------------------------------------- /docs/img/speakers/TakeyaKasukawa.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/speakers/TakeyaKasukawa.jfif -------------------------------------------------------------------------------- /docs/img/speakers/feng-hao-harry.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/speakers/feng-hao-harry.jpeg -------------------------------------------------------------------------------- /static/img/speakers/BelindaPhipson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/speakers/BelindaPhipson.jpg -------------------------------------------------------------------------------- /static/img/speakers/HiroshiTsugawa.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/speakers/HiroshiTsugawa.gif -------------------------------------------------------------------------------- /static/img/speakers/KokiTsuyuzaki.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/speakers/KokiTsuyuzaki.jpg -------------------------------------------------------------------------------- /static/img/speakers/NiteshTuraga.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/speakers/NiteshTuraga.jpeg -------------------------------------------------------------------------------- /static/img/speakers/TatsuyaAmano.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/speakers/TatsuyaAmano.jpeg -------------------------------------------------------------------------------- /themes/hugo-universal-theme/.eslintrc.yml: -------------------------------------------------------------------------------- 1 | extends: standard 2 | plugins: 3 | - standard 4 | - promise 5 | env: 6 | jquery: true 7 | -------------------------------------------------------------------------------- /docs/img/carousel/BiocAsia2021Hokusai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/carousel/BiocAsia2021Hokusai.png -------------------------------------------------------------------------------- /docs/img/carousel/template-easy-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/carousel/template-easy-code.png -------------------------------------------------------------------------------- /docs/img/speakers/ErqiangAndTizanzhi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/speakers/ErqiangAndTizanzhi.png -------------------------------------------------------------------------------- /docs/img/speakers/GabrieladeQueiroz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/speakers/GabrieladeQueiroz.jpg -------------------------------------------------------------------------------- /static/img/carousel/BioCAsia2021-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/carousel/BioCAsia2021-v2.png -------------------------------------------------------------------------------- /static/img/carousel/BioCAsia2021-v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/carousel/BioCAsia2021-v3.png -------------------------------------------------------------------------------- /static/img/carousel/template-tablets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/carousel/template-tablets.png -------------------------------------------------------------------------------- /static/img/speakers/StefanoAndMaria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/speakers/StefanoAndMaria.png -------------------------------------------------------------------------------- /static/img/speakers/StefanoMangiola.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/speakers/StefanoMangiola.png -------------------------------------------------------------------------------- /static/img/speakers/TakeyaKasukawa.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/speakers/TakeyaKasukawa.jfif -------------------------------------------------------------------------------- /static/img/speakers/feng-hao-harry.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/speakers/feng-hao-harry.jpeg -------------------------------------------------------------------------------- /static/img/carousel/BiocAsia2021Hokusai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/carousel/BiocAsia2021Hokusai.png -------------------------------------------------------------------------------- /static/img/carousel/template-easy-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/carousel/template-easy-code.png -------------------------------------------------------------------------------- /static/img/speakers/ErqiangAndTizanzhi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/speakers/ErqiangAndTizanzhi.png -------------------------------------------------------------------------------- /docs/img/clients/ABACBS+logo+folded+white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/clients/ABACBS+logo+folded+white.png -------------------------------------------------------------------------------- /docs/img/carousel/BioC2020-drawing-MtRainier.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/carousel/BioC2020-drawing-MtRainier.jpg -------------------------------------------------------------------------------- /docs/img/docker-vertical-logo-monochromatic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/docker-vertical-logo-monochromatic.png -------------------------------------------------------------------------------- /data/clients/2.yaml: -------------------------------------------------------------------------------- 1 | name: "F1000Research" 2 | image: "img/clients/F1000R.png" 3 | url: "https://f1000research.com/gateways/bioconductor/about-this-gateway" 4 | -------------------------------------------------------------------------------- /docs/img/carousel/BioC2020-drawing-Spaceneedle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/carousel/BioC2020-drawing-Spaceneedle.jpg -------------------------------------------------------------------------------- /static/img/docker-vertical-logo-monochromatic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/static/img/docker-vertical-logo-monochromatic.png -------------------------------------------------------------------------------- /docs/img/carousel/BioC2020-drawing-MtRainier-Spaceneedle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAsia2021/main/docs/img/carousel/BioC2020-drawing-MtRainier-Spaceneedle.jpg -------------------------------------------------------------------------------- /content/posts/my-first-post.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "My First Post" 3 | date: 2020-10-16T18:52:14-04:00 4 | draft: false 5 | type: "single" 6 | --- 7 | 8 | # test 9 | 10 | test 11 | 12 | 13 | -------------------------------------------------------------------------------- /themes/hugo-universal-theme/layouts/partials/sidebar.html: -------------------------------------------------------------------------------- 1 | {{ partial "widgets/search.html" . }} 2 | 3 | {{ partial "widgets/categories.html" . }} 4 | 5 | {{ partial "widgets/tags.html" . }} 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Hugo default output directory 2 | /public 3 | 4 | ## OS Files 5 | # Windows 6 | Thumbs.db 7 | ehthumbs.db 8 | Desktop.ini 9 | $RECYCLE.BIN/ 10 | 11 | # OSX 12 | .DS_Store 13 | 14 | -------------------------------------------------------------------------------- /docs/css/custom.css: -------------------------------------------------------------------------------- 1 | /* your styles go here */ 2 | 3 | .box-image-text .image { 4 | min-height: 200px; 5 | max-height: 200px; 6 | } 7 | 8 | .box-simple { 9 | min-height: 230px; 10 | } 11 | -------------------------------------------------------------------------------- /themes/hugo-universal-theme/layouts/archetypes/default.md: -------------------------------------------------------------------------------- 1 | +++ 2 | tags = [] 3 | categories = [] 4 | description = "" 5 | menu = "" 6 | banner = "" 7 | images = [] 8 | +++ 9 | 10 | 11 | -------------------------------------------------------------------------------- /layouts/partials/iframe.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /layouts/shortcodes/iframe.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /content/contact.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Contact" 3 | id = "contact" 4 | +++ 5 | 6 | # We are here to help you 7 | 8 | ## Members of organizing committees 9 | 10 | **Bold** highlights leaders of the committees 11 | -------------------------------------------------------------------------------- /themes/hugo-universal-theme/static/css/custom.css: -------------------------------------------------------------------------------- 1 | /* your styles go here */ 2 | 3 | .box-image-text .image { 4 | min-height: 200px; 5 | max-height: 200px; 6 | } 7 | 8 | .box-simple { 9 | min-height: 230px; 10 | } 11 | -------------------------------------------------------------------------------- /docs/tags/page/1/index.html: -------------------------------------------------------------------------------- 1 |
Current developments within and beyond the Bioconductor project
" 4 | image: "img/carousel/BiocAsia2021Hokusai.png" 5 | -------------------------------------------------------------------------------- /data/features/uiux.yaml: -------------------------------------------------------------------------------- 1 | weight: 6 2 | name: "UI/UX" 3 | icon: "fas fa-user" 4 | url: "" 5 | description: "Am terminated it excellence invitation projection as. She graceful shy believed distance use nay. Lively is people so basket ladies window expect." 6 | -------------------------------------------------------------------------------- /data/carousel/multipurpose1.yaml: -------------------------------------------------------------------------------- 1 | weight: 1 2 | title: "Bioconductor virtual conference Asia, November 1-4 2021" 3 | description: "Overcoming language barriers and expanding the Bioconductor community
" 4 | image: "img/carousel/BiocAsia2021Hokusai.png" 5 | -------------------------------------------------------------------------------- /data/features/email.yaml: -------------------------------------------------------------------------------- 1 | weight: 5 2 | name: "Email Marketing" 3 | icon: "far fa-envelope" 4 | url: "" 5 | description: "Advantage old had otherwise sincerity dependent additions. It in adapted natural hastily is justice. Six draw you him full not mean evil." 6 | -------------------------------------------------------------------------------- /data/features/seo.yaml: -------------------------------------------------------------------------------- 1 | weight: 3 2 | name: "SEO and SEM" 3 | icon: "fas fa-globe" 4 | url: "" 5 | description: "Am terminated it excellence invitation projection as. She graceful shy believed distance use nay. Lively is people so basket ladies window expect." 6 | -------------------------------------------------------------------------------- /data/features/consulting.yaml: -------------------------------------------------------------------------------- 1 | weight: 4 2 | name: "Consulting" 3 | icon: "fas fa-lightbulb" 4 | url: "" 5 | description: "Fifth abundantly made Give sixth hath. Cattle creature i be don't them behold green moved fowl Moved life us beast good yielding. Have bring." 6 | -------------------------------------------------------------------------------- /data/features/webdesign.yaml: -------------------------------------------------------------------------------- 1 | weight: 1 2 | name: "Webdesign" 3 | icon: "fas fa-desktop" 4 | url: "" 5 | description: "Fifth abundantly made Give sixth hath. Cattle creature i be don't them behold green moved fowl Moved life us beast good yielding. Have bring." 6 | -------------------------------------------------------------------------------- /docs/categories/page/1/index.html: -------------------------------------------------------------------------------- 1 |Multilingual (Japanese, Mandarin, English) workshops, English keynote presentations, and more
" 4 | image: "img/carousel/BiocAsia2021Hokusai.png" 5 | -------------------------------------------------------------------------------- /themes/hugo-universal-theme/layouts/partials/breadcrumbs.html: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /themes/hugo-universal-theme/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hugo-universal-theme", 3 | "devDependencies": { 4 | "eslint": "^7.3.1", 5 | "eslint-config-standard": "^6.2.0", 6 | "eslint-plugin-promise": "^3.0.0", 7 | "eslint-plugin-standard": "^2.0.1" 8 | }, 9 | "scripts": { 10 | "lint": "eslint .", 11 | "install_hugo": "brew update && brew install hugo" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /themes/hugo-universal-theme/layouts/partials/page.html: -------------------------------------------------------------------------------- 1 |31 | {{ .Content }} 32 |
33 |