Skip to content
Snippets Groups Projects
Select Git revision
  • master
1 result

index.html

Blame
  • ac's avatar
    Andrew Cohen authored
    ed9707f5
    History
    index.html 2.92 KiB
    <!--
    
        Copyright 2015 Andrew Cohen
    
         This file is part of CloneView - the tool for displaying stem cell lineaging in a webpage.
    
         CloneView is free software: you can redistribute it and/or modify
         it under the terms of the GNU General Public License as published by
         the Free Software Foundation, either version 3 of the License, or
         (at your option) any later version.
    
         CloneView is distributed in the hope that it will be useful,
         but WITHOUT ANY WARRANTY; without even the implied warranty of
         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
         GNU General Public License for more details.
    
         You should have received a copy of the GNU General Public License
         along with CloneView in file "gnu gpl v3.txt".  If not, see
         <http://www.gnu.org/licenses/>.
    
    -->
    
    <!DOCTYPE html>
    
    
    <html>
    
    <title id="Title">CloneView</title>
    <script type="text/javascript">
    
        var FileURL = window.location.href.split("?");
        if (FileURL.length<2) {
            // if no experiment name passed in, go to experiments folder
            console.log('no experiment name detected');
           window.location.href='./Experiments/AntPostSCR/';
        }
    </script>
    <script src="DrawTree.js" type="text/javascript"> </script>
    <script src="CloneViewBuilder.js" type="text/javascript"> </script>
    <script src="CloneViewFunctions.js" type="text/javascript"> </script>
    <link rel="shortcut icon" href="./srcImages/favicon.ico" type="image/x-icon" />
    <head>
    
    </head>
    
    <body>
    <div id="top">
        <div id="header">
            <a href='.\Experiments'><img id="logo" src="srcImages/CloneView-logo-white.jpg"></a>
            <p id="experimentDescription"/>Experiment: Undefined [click clone name to launch image window - 'x'=dead, 'o'=ambiguous]</p>
            <p id="errorRate"></p>
            <p id="totalCells"></p>
        </div>
        <div id="filter">
            <div id="hiddenFilter" onclick="flipFilter();">
                <img id="searchIcon" src="srcImages/searchIcon.png" width="25" height="25"/>
                <p id="filterText">FILTER CLONES</p>
                <img id="dropIcon" src="srcImages/dropDown.png" width="25" height="25"/>
                <br><br>
            </div>
            <div id="visibleFilter">
                <br><hr><br>
    
                Filter : <input type="search" id="filterBox" placeholder="Enter desired string" > <br><br>
                <select id= "sortBy" onchange="sortClones(this.options[this.selectedIndex].value); flipFilter();">
                    <option value="1"> Number of Cells: High to Low </option>
                    <option value="2"> Number of Cells: Low to High </option>
                    <option value="3"> Error Rate: High to Low </option>
                    <option value="4"> Error Rate: Low to High </option>
                    <option value="5"> Alphabetically </option>
                    <option value="6"> Missing Segmentations: </option>
                </select>
            </div>
        </div>
    </div>
    <link rel="stylesheet" type="text/css" href="CloneView.css">
    
    </body>
    </html>