All Projects → Benjamin-Lee → Deep Rules

Benjamin-Lee / Deep Rules

Licence: other
Ten Quick Tips for Deep Learning in Biology

Projects that are alternatives of or similar to Deep Rules

Bio.jl
[DEPRECATED] Bioinformatics and Computational Biology Infrastructure for Julia
Stars: ✭ 257 (+43.58%)
Mutual labels:  bioinformatics, genomics, biology
Intermine
A powerful open source data warehouse system
Stars: ✭ 195 (+8.94%)
Mutual labels:  bioinformatics, genomics, biology
full spectrum bioinformatics
An open-access bioinformatics text
Stars: ✭ 26 (-85.47%)
Mutual labels:  bioinformatics, genomics, biology
Pygeno
Personalized Genomics and Proteomics. Main diet: Ensembl, side dishes: SNPs
Stars: ✭ 261 (+45.81%)
Mutual labels:  bioinformatics, genomics, biology
Jvarkit
Java utilities for Bioinformatics
Stars: ✭ 313 (+74.86%)
Mutual labels:  bioinformatics, genomics, biology
Ncbi Genome Download
Scripts to download genomes from the NCBI FTP servers
Stars: ✭ 494 (+175.98%)
Mutual labels:  bioinformatics, genomics, biology
Jbrowse
A modern genome browser built with JavaScript and HTML5.
Stars: ✭ 393 (+119.55%)
Mutual labels:  bioinformatics, genomics, biology
Tiledb Vcf
Efficient variant-call data storage and retrieval library using the TileDB storage library.
Stars: ✭ 26 (-85.47%)
Mutual labels:  data-science, bioinformatics, genomics
Goleft
goleft is a collection of bioinformatics tools distributed under MIT license in a single static binary
Stars: ✭ 175 (-2.23%)
Mutual labels:  bioinformatics, genomics
Circlator
A tool to circularize genome assemblies
Stars: ✭ 121 (-32.4%)
Mutual labels:  bioinformatics, genomics
Kmer Cnt
Code examples of fast and simple k-mer counters for tutorial purposes
Stars: ✭ 124 (-30.73%)
Mutual labels:  bioinformatics, genomics
Hicexplorer
HiCExplorer is a powerful and easy to use set of tools to process, normalize and visualize Hi-C data.
Stars: ✭ 116 (-35.2%)
Mutual labels:  bioinformatics, genomics
Ngless
NGLess: NGS with less work
Stars: ✭ 115 (-35.75%)
Mutual labels:  bioinformatics, genomics
Anndata
Annotated data.
Stars: ✭ 171 (-4.47%)
Mutual labels:  data-science, bioinformatics
Cooler
A cool place to store your Hi-C
Stars: ✭ 112 (-37.43%)
Mutual labels:  bioinformatics, genomics
Somalier
fast sample-swap and relatedness checks on BAMs/CRAMs/VCFs/GVCFs... "like damn that is one smart wine guy"
Stars: ✭ 128 (-28.49%)
Mutual labels:  bioinformatics, genomics
Hts Nim
nim wrapper for htslib for parsing genomics data files
Stars: ✭ 132 (-26.26%)
Mutual labels:  bioinformatics, genomics
Cgranges
A C/C++ library for fast interval overlap queries (with a "bedtools coverage" example)
Stars: ✭ 111 (-37.99%)
Mutual labels:  bioinformatics, genomics
Sarek
Detect germline or somatic variants from normal or tumour/normal whole-genome or targeted sequencing
Stars: ✭ 124 (-30.73%)
Mutual labels:  bioinformatics, genomics
Octopus
Bayesian haplotype-based mutation calling
Stars: ✭ 131 (-26.82%)
Mutual labels:  bioinformatics, genomics

Ten Quick Tips for Deep Learning in Biology

HTML Manuscript PDF Manuscript Manubot Twitter URL

Manuscript description

This is the manuscript for a community-written article aimed at PLOS Computational Biology. Deep learning is exploding in popularity and is increasingly finding its way into biological data analysis. However, since most biologists receive little (or no) data science training, using deep learning properly can be a daunting task.

We're going to try to fix that. By boiling down the community's knowledge into ten quick tips, we hope to increase the number of biological researchers using DL (by making it more inviting) and the quality of the research (by helping them avoid common mistakes).

Join us!

Where we are now

Currently, we're in the process of finalizing the draft of the paper. The journal has already approved our presubmission inquiry and we are almost ready to submit!

The raw text of the manuscript is stored within the content directory. The rendered manuscript may be viewed as HTML here or as a PDF here.

How you can help

Help of any kind is highly appreciated. Want to pitch in but not sure how?

For more information, see the contribution guidelines. All contributions are subject to the code of conduct.

A note on the project's name

Originally, this paper was going to be titled "Ten simple rules for deep learning in biology." However, the journal asked that we change the name to "n quick tips for deep learning in biology" to be placed into the educational section as well as to give us more latitude with the number of tips we have. While we changed the name of the paper, for simplicity, we kept the name of the repo as deep-rules.

Manubot

Manubot is a system for writing scholarly manuscripts via GitHub. Manubot automates citations and references, versions manuscripts using git, and enables collaborative writing via GitHub. An overview manuscript presents the benefits of collaborative writing with Manubot and its unique features. The rootstock repository is a general purpose template for creating new Manubot instances, as detailed in SETUP.md. See USAGE.md for documentation how to write a manuscript.

Please open an issue for questions related to Manubot usage, bug reports, or general inquiries.

Repository directories & files

The directories are as follows:

  • content contains the manuscript source, which includes markdown files as well as inputs for citations and references. See USAGE.md for more information.
  • output contains the outputs (generated files) from Manubot including the resulting manuscripts. You should not edit these files manually, because they will get overwritten.
  • webpage is a directory meant to be rendered as a static webpage for viewing the HTML manuscript.
  • build contains commands and tools for building the manuscript.
  • ci contains files necessary for deployment via continuous integration.

Local execution

The easiest way to run Manubot is to use continuous integration to rebuild the manuscript when the content changes. If you want to build a Manubot manuscript locally, install the conda environment as described in build. Then, you can build the manuscript on POSIX systems by running the following commands from this root directory.

# Activate the manubot conda environment (assumes conda version >= 4.4)
conda activate manubot

# Build the manuscript, saving outputs to the output directory
bash build/build.sh

# At this point, the HTML & PDF outputs will have been created. The remaining
# commands are for serving the webpage to view the HTML manuscript locally.
# This is required to view local images in the HTML output.

# Configure the webpage directory
manubot webpage

# You can now open the manuscript webpage/index.html in a web browser.
# Alternatively, open a local webserver at http://localhost:8000/ with the
# following commands.
cd webpage
python -m http.server

Sometimes it's helpful to monitor the content directory and automatically rebuild the manuscript when a change is detected. The following command, while running, will trigger both the build.sh script and manubot webpage command upon content changes:

bash build/autobuild.sh

Continuous Integration

Manubot

Whenever a pull request is opened, Travis CI will test whether the changes break the build process to generate a formatted manuscript. The build process aims to detect common errors, such as invalid citations. If your pull request build fails, see the Travis CI logs for the cause of failure and revise your pull request accordingly.

When a commit to the master branch occurs (for example, when a pull request is merged), Travis CI builds the manuscript and writes the results to the gh-pages and output branches. The gh-pages branch uses GitHub Pages to host the following URLs:

For continuous integration configuration details, see .travis.yml.

License

License: CC BY 4.0 License: CC0 1.0

Except when noted otherwise, the entirety of this repository is licensed under a CC BY 4.0 License (LICENSE.md), which allows reuse with attribution. Please attribute by linking to https://github.com/Benjamin-Lee/deep-rules.

Since CC BY is not ideal for code and data, certain repository components are also released under the CC0 1.0 public domain dedication (LICENSE-CC0.md). All files matched by the following glob patterns are dual licensed under CC BY 4.0 and CC0 1.0:

  • *.sh
  • *.py
  • *.yml / *.yaml
  • *.json
  • *.bib
  • *.tsv
  • .gitignore

All other files are only available under CC BY 4.0, including:

  • *.md
  • *.html
  • *.pdf
  • *.docx

Please open an issue for any question related to licensing.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].