Skip to content

Commit

Permalink
Added info to documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
SarahW91 committed Feb 7, 2023
1 parent 8699162 commit 62a54a4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion app/views/homes/documentation.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,8 @@
<p>After uploading a read, the app will automatically try to assign it to a contig and a primer. Multiple reads
generated from the same isolate will automatically be assigned to the same contig.</p>
<p>For this to work it is very important that all file names follow the pattern <em>&lt;isolate_identifier&gt;_&lt;primer_name&gt;.scf/ab1</em>!
It is also important that a record for the used primer was added to the app before uploading the read file. </p>
It is also important that a record for the used primer was added to the app before uploading the read file.
Isolate names may only contain letters, numbers or underscores. Primer names may only contain letters, numbers or hyphens.</p>
<p>The app will attempt to trim the reads based on some preset parameters (the default settings are that in a window
of 10 bases, at least 8 have to have a quality score above 30). You can change these parameters before attempting
to trim the read again.
Expand Down
2 changes: 1 addition & 1 deletion config/environments/test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# test suite. You never need to work with it otherwise. Remember that
# your test database is "scratch space" for the test suite and is wiped
# and recreated between test runs. Don't rely on the data there!
config.cache_classes = true
config.cache_classes = false

# Do not eager load code on boot. This avoids loading your whole application
# just for the purpose of running a single test. If you are using a tool that
Expand Down
2 changes: 1 addition & 1 deletion db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,7 @@
t.text "locality"
t.string "latitude_original", limit: 255
t.string "longitude_original", limit: 255
t.string "elevation_orig", limit: 255
t.string "exposition", limit: 255
t.text "habitat"
t.string "substrate", limit: 255
Expand All @@ -226,7 +227,6 @@
t.integer "collection_id"
t.integer "tissue_id"
t.bigint "taxon_id"
t.string "elevation_orig"
t.decimal "elevation"
t.index ["collection_id"], name: "index_individuals_on_collection_id"
t.index ["taxon_id"], name: "index_individuals_on_taxon_id"
Expand Down

0 comments on commit 62a54a4

Please sign in to comment.