Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 666 Bytes

README.md

File metadata and controls

17 lines (14 loc) · 666 Bytes

DNA Complement App

Shiny web app to get the complement of a DNA sequence. This application only accepts valid DNA characters (A,T,C,G, and N as missing nucleotide).

How to run

  1. Clone this repository.
  2. Build image with Docker.
docker build -t dna_complement:latest .
  1. Run image with port 3838.
docker run -p 8080:3838 dna_complement:latest
  1. Open your web browser and go to http://localhost:8080/
  2. Run an example: Copy and paste the DNA sequence of the human insulin in FASTA format into the input text box, and click the button.