diff options
author | zsloan | 2022-02-14 21:44:40 +0000 |
---|---|---|
committer | zsloan | 2022-02-14 15:48:05 -0600 |
commit | c147a6e75a9496263fd76f2eb9711ddf77a643ff (patch) | |
tree | e79079ca133e2ebea0a2e5d820ac67afb99a5921 | |
parent | 91691799956450cac4e763f96e2152aa1cd44f3b (diff) | |
download | genenetwork2-c147a6e75a9496263fd76f2eb9711ddf77a643ff.tar.gz |
Add search text for cis/transLRS/LOD searches
There wasn't any search text for cis/trans searches including both
chromosome and exclusion zone, so I added somee
-rw-r--r-- | wqflask/wqflask/templates/search_result_page.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/wqflask/wqflask/templates/search_result_page.html b/wqflask/wqflask/templates/search_result_page.html index 26cdc437..70c10946 100644 --- a/wqflask/wqflask/templates/search_result_page.html +++ b/wqflask/wqflask/templates/search_result_page.html @@ -40,6 +40,8 @@ with <u>{{ word.key|upper }}</u> between <strong>{{ word.search_term[0] }}</strong> and <strong>{{ word.search_term[1] }}</strong>{% if loop.last %}.{% else %} and {% endif %} {% elif word.search_term|length == 3 %} with <u>{{ word.key|upper }}</u> between <strong>{{ word.search_term[0] }}</strong> and <strong>{{ word.search_term[1] }}</strong> on chromosome <strong>{{ word.search_term[2] }}</strong>{% if loop.last %}.{% else %} and {% endif %} + {% elif word.search_term|length == 4 %} + with <u>{{ word.key|upper }}</u> between <strong>{{ word.search_term[0] }}</strong> and <strong>{{ word.search_term[1] }}</strong> on chromosome <strong>{{ word.search_term[3] }}</strong> with an exclusion zone of <strong>{{ word.search_term[2] }}</strong> Mb {% elif word.search_term|length == 5 %} with <u>{{ word.key|upper }}</u> between <strong>{{ word.search_term[0] }}</strong> and <strong>{{ word.search_term[1] }}</strong> on chromosome <strong>{{ word.search_term[2] }}</strong> between <strong>{{ word.search_term[3] }}</strong> and <strong>{{ word.search_term[4] }}</strong> Mb{% if loop.last %}.{% else %} and {% endif %} {% endif %} |