github.com - Other tools focus on getting data out of the fastq or fast5 files, which is slow and computationally intensive. The benefit of this approach is that it works on a single, small, .txt summary file. So it's a lot quicker than most other things out...
bioconductor.org - Hilbert curve is a type of space-filling curves that folds one dimensional axis into a two dimensional space, but still keeps the locality. It has advantages to visualize data with long axis in following two aspects:
greatly improve...
www2.decipher.codes - DECIPHER is a software toolset that can be used for deciphering and managing biological sequences efficiently using the R programming language. The R package is distributed as platform independent source code under the GPL...
https://www.rplumber.io/ - plumber allows you to create a REST API by merely decorating your existing R source code with special comments. Take a look at an example.
# plumber.R
#* Echo back the input
#* @param msg The message to echo
#* @get /echo
function(msg=""){...
github.com - ggradar allows you to build radar charts with ggplot2. This package is based on Paul Williamson’s code, with new aesthetics and compatibility with ggplot2 2.0.
It was inspired by d3radaR, an htmlwidget built...
deltarho.org - Trelliscope provides a way to flexibly visualize large, complex data in great detail from within the R statistical programming environment. Trelliscope is a component in the DeltaRho environment.
For those familiar with Trellis...
github.com - RAINBOWR(Reliable Association INference By Optimizing Weights with R) is a package to perform several types of GWAS as follows.
Single-SNP GWAS with RGWAS.normal function
SNP-set (or gene set) GWAS with RGWAS.multisnp function (which tests...
github.com - platypus is an R package for object detection and semantic segmentation. Currently using
platypus you can perform:
multi-class semantic segmentation using U-Net architecture
multi-class object detection...
www.r-bloggers.com - R Shiny is one of the easiest ways for developers to make production-ready dashboards when speed and functionality are crucial. Shiny is approachable with a lot of documentation available, and because of this, a lot of developers/researchers...