Giter Site home page Giter Site logo

workshops's People

Contributors

romerobarata avatar stephenturner avatar vpnagraj avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

workshops's Issues

update rmarkdown homework & reference material

the rmarkdown lesson links to some out of date resources. e.g., https://github.com/bioconnector/workshops/blame/252121cfaa059c318d75778512c2e1f81d6e26ce/r-rmarkdown.Rmd#L27. probably should clean these up. cc @vpnagraj (you're teaching this one right @vpnagraj?)

revise landing page contents (index.md)

index.md/html is pretty boring, and mostly leftover cruft from bims8382. update this to make it more relevant to the workshop series, perhaps with links to registration on the dot edu site.

update/remove topics page

topics page in navbar mostly pertains to leftovers from BIMS8382. this should go away, or be rolled into the lessons menu, or perhaps moved into an existing page under the ? menu

bims8382 2017

BIMS8382 class 2016 was made by using a Makefile to render all Rmd files to HTML, and committing all files to both master and gh-pages (source. Using RMarkdown websites has been much easier to maintain here, and cleaner (only source files on master, only rendered files on gh-pages).

Rather than going back and updating bioconnector/bims8382, I'd like to use Rmarkdown website functionality for rendering the 2017 course materials. Instead of going back to bioconnector/bims8382 and updating everything, and maintaining two parallel repos, I propose we add bims8382-specific materials to this repo. Do you agree, @vpnagraj ?

Some things to do (check them off here as you create separate issues):

survival: colondeath==2

the survival analysis lesson states that you should use the death data, but filters where etype==1 (recurrence, not survival). options are:

  1. Change text to "recurrence" and keep the output
  2. Change etype==1 to 2 and update all output and exercises.

2 is probably a better option.

  • update lesson material
  • update exercises
  • update exercise handout compiled md/pdf. Ugh.

add IPA results to rna-seq lesson

40b85aa added results from IPA on significant results. add some of these to the end of the RNA-seq lesson.

  • upstream regulators table
  • inflammatory network
  • eNOS pathway

reading list for stats/etc

Nice list from Mike Love

Rendered: https://biodatascience.github.io/compbio/

Source: https://raw.githubusercontent.com/biodatascience/compbio/gh-pages/index.Rmd


update rna-seq lessons

The RNA-seq lesson really needs to be updated to the latest best practices starting with transcript quantification rather than alignment and gene-counting. Rough outline:

  • get original fastq data
  • quant with kallisto/salmon
  • get separate output files, import with tximport, export count table
  • or just start with separate outputs and a tx2gene table

add contributing.md file

add a contributing file that links to resources used to build this using the rmarkdown website framework. also, document how to push _site to gh-pages using a subtree push. add this file to the exclusion list on _site.yml, e.g.,

exclude: ["contributing.md"]

interactive viz: hc_add_series_scatter deprecated

Some warnings on building the interactive viz lesson:

Warning messages:
1: 'hc_add_series_scatter' is deprecated.
Use 'hc_add_series' instead.
See help("Deprecated")
2: 'hc_add_series_scatter' is deprecated.
Use 'hc_add_series' instead.
See help("Deprecated")

@vpnagraj

need a better readme

  • more information about the class, bioconnector
  • link to CONTRIBUTING.markdown
  • ???

build warnings (old R, geom_point NAs)

I get the following warnings when I build:

Output created: docs/index.html
Warning messages:
1: package 'DESeq2' was built under R version 3.3.1 
2: package 'S4Vectors' was built under R version 3.3.1 
3: package 'GenomeInfoDb' was built under R version 3.3.1 
4: Removed 32155 rows containing missing values (geom_point). 
5: Removed 32270 rows containing missing values (geom_point). 
  • 1-3 don't much matter. Fix by updating R.
  • 4-5 - where are these coming from? maybe the viz lesson, perhaps when you try to do something on the log scale? figure this out if possible.

breaking changes in dplyr/tibble

dplyr 0.5 and tibble 1.1 introduce some breaking changes. things that come to mind are

  • no arranging within groups,
  • tibble functions being split out / not exported from dplyr which may require loading separately,
  • warnings about future deprecation of summarize_each, mutate_each?
  • they're now called "tibbles" not "table underscore DFs" or whatever we called them before. Change the narrative?

perhaps @vpnagraj could help test this one and suggest changes

build warnings on stats lesson from missing data in ggplot

Output created: _site/index.html
There were 12 warnings (use warnings() to see them)
> warnings()
Warning messages:
1: Removed 166 rows containing non-finite values (stat_bin).
2: Removed 31 rows containing non-finite values (stat_bin).
3: Removed 31 rows containing non-finite values (stat_bin).
4: Removed 166 rows containing missing values (geom_point).
5: Removed 31 rows containing non-finite values (stat_smooth).
6: Removed 31 rows containing missing values (geom_point).
7: Removed 723 rows containing non-finite values (stat_bin).
8: Removed 31 rows containing non-finite values (stat_boxplot).
9: Removed 31 rows containing non-finite values (stat_smooth).
10: Removed 31 rows containing missing values (geom_point).
11: Removed 31 rows containing non-finite values (stat_smooth).
12: Removed 31 rows containing missing values (geom_point).

options:

  1. pipe to na.omit before plotting
  2. ignore them and close this issue.

ncbi: entrez_fetch causing build failure

The following lines seems to be causing a build failure.

recs <- entrez_fetch(db = "pubmed", id = res$ids[1:25], rettype = "xml", parsed = TRUE)
recs <- entrez_fetch(db = "pubmed", web_history = res$web_history, rettype = "xml", parsed = TRUE)

They both work fine when run interactively but throw the following error when trying to knit the Rmd.

Error in entrez_check(response) : 
  HTTP failure: 502, bad gateway. This error code is often returned when trying to download many records in a single request.  Try using web history as described in the rentrez tutorial
Calls: <Anonymous> ... entrez_fetch -> do.call -> <Anonymous> -> entrez_check
Execution halted

Exited with status 1.

I turned these off with eval=FALSE for now.

cc @vpnagraj
see also #43

rmarkdown: burn it all down

http://bioconnector.org/workshops/r-rmarkdown.html
https://github.com/bioconnector/workshops/blob/master/r-rmarkdown.Rmd

This whole lesson probably needs reworking. No one needs to know the gory details presented here. It should really be taught top-down instead of bottom up. Show people some RMarkdown in action first, then get into the details.

See also #49 - the reproducible research section is woefully out of date.

Some resources to look at:

On reproducibility:

Reproducibility and replicability is a glossy science now so watch out for the hype · Simply Statistics
https://simplystatistics.org/2017/03/02/rr-glossy/

Instead of research on reproducibility, just do reproducible research · Simply Statistics
https://simplystatistics.org/2015/12/11/instead-of-research-on-reproducibility-just-do-reproducible-research/

A Simple Explanation for the Replication Crisis in Science · Simply Statistics
https://simplystatistics.org/2016/08/24/replication-crisis/

Practical computational reproducibility in the life sciences | bioRxiv
https://www.biorxiv.org/content/early/2017/10/11/200683

Project-oriented workflow - Tidyverse
https://www.tidyverse.org/articles/2017/12/workflow-vs-script/

cc @vpnagraj

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.