An open API service indexing awesome lists of open source software.

https://github.com/jokergoo/cola_supplementary

Supplementary for cola manuscript
https://github.com/jokergoo/cola_supplementary

Last synced: 3 months ago
JSON representation

Supplementary for cola manuscript

Awesome Lists containing this project

README

        

This repository contains supplementary files for the manuscript 'cola: an R/Bioconductor Package for Consensus Partitioning through a General Framework'.

```{r, results = "asis", echo = FALSE, warning = FALSE}
library(rmarkdown)

rmd_files = scan(pipe("ls */*.Rmd"), what = "character")
ind = gsub("suppl_(\\d+)_.*$", "\\1", basename(rmd_files))
ind = as.numeric(ind)

title = sapply(rmd_files, function(x) yaml_front_matter(x)$title)
desc = sapply(rmd_files, function(x) {
desc = yaml_front_matter(x)$description
if(is.null(desc)) desc = ""
desc
})

od = order(ind)
ind = ind[od]
title = title[od]
desc = desc[od]
rmd_files = rmd_files[od]

library(GetoptLong)

qqcat("- Supporting material @{ind}: [@{title}](https://jokergoo.github.io/cola_supplementary/@{gsub('Rmd$', 'html', rmd_files)})\n")
```