2 <div class="modal fade" id="usage_policy" name="usage_policy" tabindex="-1" role="dialog" aria-labelledby="usagePolicyDialog" data-controls-modal="your_div_id" data-backdrop="static" data-keyboard="false" href="#">
3 <div class="modal-dialog" role="document">
4 <div class="modal-content">
5 <div class="modal-header">
6 <h4 class="modal-title" id="usagePolicyDialog">Please Note: S.lycopersicoides Data Access Agreement</h4>
8 <div class="modal-body">
9 <div class="container-fluid">
10 <h4>Solanum lycopersicoides genome adheres to the <a href="https://www.nature.com/nature/journal/v461/n7261/full/461168a.html"> Toronto Agreement</a> on prepublication data release.</h4>
11 The Boyce Thompson Institute and RWTH Aachen University are pleased to make the pre-publication
12 Solanum lycopersicoides LA2951 genome sequences publicly available as a resource for plant breeding and biology.
14 By accessing these data, I hereby agree to respect the rights of the consortium to analyze and
15 publish the first global analyses in a peer-reviewed publication according to the Toronto agreement.
17 1) whole chromosome or whole genome level analyses on genes, gene families, and repetitive sequences and
18 2) comparative analyses with other organisms.
19 Studies that do not overlap with those planned by the consortium may be undertaken following an agreement.
20 Please contact <a href="mailto:usadel@bio1.rwth-aachen.de">Dr. Bjorn Usadel</a> or <a href="mailto:srs57@cornell.edu">Dr. Susan Strickler</a>
21 to discuss such possibilities.
23 The data may be freely downloaded and used by all who respect the restrictions described above.
24 <b>Any use of the S. lycopersicoides genome data prior to its publication must follow the agreement
25 and must credit "The Solanum lycopersicoides Genome Consortium".</b>
29 <div class="modal-footer">
30 <button type="button" class="btn btn-default" id="usage_policy_disagree_submit">Don't Agree</button>
31 <button type="button" class="btn btn-primary" id="usage_policy_agree_submit">Agree</button>
41 jQuery('#usage_policy_agree_submit').click( function () {
42 jQuery.cookie("data_usage_policy_approved", "1", { expires: 10000 } );
43 jQuery('#usage_policy').modal("hide");
46 jQuery('#usage_policy_disagree_submit').click( function () {
47 document.location.href="/";
51 if (jQuery.cookie("data_usage_policy_approved") == 1) {
52 document.write('<div class="well well-sm">You have already accepted the data usage policy. Thank you. For more information, you can access the <a href="https://www.nature.com/nature/journal/v461/n7261/full/461168a.html"> Toronto Agreement publication </div>');
55 window.onload=function() {
56 var cookie = jQuery.cookie("data_usage_policy_approved");
57 //alert("have cookie: "+cookie);
59 if (cookie == undefined) {
62 jQuery('#usage_policy').modal("show");
67 jQuery('#usage_policy').modal("hide");