-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from dms-viz/give-more-control-over-color-scale
Allow the user to set the heatmap color scale limits and center
- Loading branch information
Showing
13 changed files
with
4,513 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "configure-dms-viz" | ||
version = "1.3.4" | ||
version = "1.4.0" | ||
description = "Configure your data for visualization with dms-viz.github.io" | ||
authors = ["Will Hannon <[email protected]>"] | ||
maintainers = ["Will Hannon <[email protected]>"] | ||
|
2 changes: 1 addition & 1 deletion
2
tests/HIV-Envelope-BF520-DMS/output/HIV-Envelope-BF520-DMS.json
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# VAMPseq mutational scan of the PTEN tumor suppressor | ||
|
||
The `configure-dms-viz` command used to generate this visualization is: | ||
|
||
```bash | ||
configure-dms-viz format \ | ||
--input tests/PTEN-VAMPseq/input/PTEN-VAMPseq.csv \ | ||
--output tests/PTEN-VAMPseq/output/PTEN-VAMPseq.json \ | ||
--name "PTEN-VAPseq" \ | ||
--metric "score" \ | ||
--metric-name "Score" \ | ||
--heatmap-limits "-.5, 1, 1.5" \ | ||
--structure "1D5R" | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
input,name,metric,metric_name,structure,heatmap_limits | ||
tests/PTEN-VAMPseq/input/PTEN-VAMPseq.csv,PTEN-VAPseq,score,Score,1D5R,"-.5, 1, 1.5" |
Oops, something went wrong.