Skip to content

Commit

Permalink
Merge pull request #24 from BioAnalyticResource/guard_cell
Browse files Browse the repository at this point in the history
Guard cell
  • Loading branch information
asherpasha authored Sep 26, 2024
2 parents 2d4f6aa + 6db21ca commit 751afb2
Show file tree
Hide file tree
Showing 6 changed files with 635 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ cgi-bin/gDriveMountFast.pl
.env.test.local
.env.production.local
.vscode
.idea
13 changes: 13 additions & 0 deletions cgi-bin/SVGs/GuardCell.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions cgi-bin/core/custom.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ let upload_src = "";
const base_dataset_dictionary = {
"Araport 11 RNA-seq data": "cgi-bin/data/bamdata_araport11.xml",
"Developmental transcriptome - Klepikova et al": "cgi-bin/data/bamdata_Developmental_transcriptome.xml",
"Guard Cell": "cgi-bin/data/guard_cell.xml",
};
let dataset_dictionary = base_dataset_dictionary;
let loadNewDataset = false;
Expand Down Expand Up @@ -874,6 +875,12 @@ function rnaseq_images(status) {
} else {
match_drive = linkString;
}
} else {
// This is local drive
let linkString = sraDict[sraList[i]]["drive_link"];
// Force no cache
status = "0";
match_drive = linkString;
}

data = {
Expand Down Expand Up @@ -1459,6 +1466,10 @@ const svgAgainstData = {
name: "Flower Development 19",
subunit: ["flowerDevelopmentPart19"],
},
"ath-GuardCell": {
name: "Guard Cell",
subunit: ["Guard_cells"],
},
"ath-Other": {
name: "Other",
},
Expand Down
Loading

0 comments on commit 751afb2

Please sign in to comment.