diff options
author | Adam Novak | 2020-04-10 16:43:05 -0700 |
---|---|---|
committer | Adam Novak | 2020-04-10 16:46:02 -0700 |
commit | 04912c58cdab27962429be56971afde189d702c4 (patch) | |
tree | a42ce55ffb20572a139c25111a85a9376781cf1d /bh20simplewebuploader/templates | |
parent | a0feaff212f5e4c030dc231a23f8df704ac3aa53 (diff) | |
download | bh20-seq-resource-04912c58cdab27962429be56971afde189d702c4.tar.gz bh20-seq-resource-04912c58cdab27962429be56971afde189d702c4.tar.lz bh20-seq-resource-04912c58cdab27962429be56971afde189d702c4.zip |
Clarify supported formats and make web UI take FASTQ
Diffstat (limited to 'bh20simplewebuploader/templates')
-rw-r--r-- | bh20simplewebuploader/templates/form.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bh20simplewebuploader/templates/form.html b/bh20simplewebuploader/templates/form.html index 2934a7c..e722ab3 100644 --- a/bh20simplewebuploader/templates/form.html +++ b/bh20simplewebuploader/templates/form.html @@ -13,9 +13,9 @@ </p> <hr> <form action="/submit" method="POST" enctype="multipart/form-data" id="main_form"> - <label for="fasta">Select FASTA file for assembled genome (max 1MB):</label> + <label for="fasta">Select FASTA file of assembled genome, or FASTQ of reads (max 50MB):</label> <br> - <input type="file" id="fasta" name="fasta" accept=".fa,.fasta,.fna" required> + <input type="file" id="fasta" name="fasta" accept=".fa,.fasta,.fna,.fq" required> <br> <label>Select metadata submission method:</label> |