Skip to content

Commit

Permalink
Made changes to the readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Shashwat Sahay committed Sep 27, 2021
1 parent 07cecd9 commit cc18606
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 20 deletions.
11 changes: 1 addition & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,4 @@ Zenodo (https://zenodo.org/record/5517607).

## License

This project is licensed under the MIT License - for details please refer to the [LICENSE](./LICENSE) file.

=======
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
This project is licensed under the MIT License - for details please refer to the [LICENSE](./LICENSE) file.
16 changes: 8 additions & 8 deletions app/static/js/controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -393,12 +393,12 @@ function main() {
function runFullKDEviaPOST() {
$(document).on({
ajaxStart: function(){
$("#vf-norm-load").show();
$("#vf-norm-preview").hide();
document.getElementById("vf-norm-load").style.display='block';
document.getElementById("vf-norm-preview").style.display='none';
},
ajaxStop: function(){
$("#vf-norm-load").hide();
$("#vf-norm-preview").show();
document.getElementById("vf-norm-load").style.display='none';
document.getElementById("vf-norm-preview").style.display='block';
}
});
payload = JSON.stringify({
Expand Down Expand Up @@ -451,12 +451,12 @@ function main() {
$(document).on({
ajaxStart: function(){
//console.log(arrSigMat);
$("celltypes-load").show();
$("celltypes-preview").hide();
document.getElementById("celltypes-load").style.display='block';
document.getElementById("celltypes-preview").style.display='none';
},
ajaxStop: function(){
$("celltypes-load").hide();
$("celltypes-preview").show();
document.getElementById("celltypes-load").style.display='none';
document.getElementById("celltypes-preview").style.display='block';
}
});

Expand Down
2 changes: 1 addition & 1 deletion app/templates/indexMain.html
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ <h3>Step 2: Cell Assignments</h3>

</p>
<div class="d-flex, flex-row, container-fluid">
<div id="celltypes-load" class="row container-fluid vf-norm-load"></div>
<div id="celltypes-load" class="row container-fluid vf-norm-load" style="vertical-align: middle;"></div>
<div id="celltypes-preview" class="d-flex flex-column container-fluid"
style="width: 80vw; height: 50vw;">
<div id="hoverinfo" class="d-flex align-self-start"></div>
Expand Down
2 changes: 1 addition & 1 deletion app/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import json
import pathlib
from numba import jit, float64, int32, char, prange
import tensorflow as tf




Expand Down

0 comments on commit cc18606

Please sign in to comment.