-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Brenner reports; Simplify Brenner setting #74
Open
gaviram
wants to merge
10
commits into
main
Choose a base branch
from
feature/NIH_preprocessing
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
b4976e3
Add Brenner reports; Simplify Brenner setting
gaviram 8e62a29
fixed bug in validation of yaxis_cut_ranges to match its type (dict)
gaviram be51752
add validate_antibody flag to qc_report
gaviram d07e126
NIH configurations
gaviram 3083668
configs NIH
gaviram 04e58f0
Added spacing after function definition
gaviram b865577
Additional binning method for comparison to paper
gaviram 3f99bbc
NIH QC report
gaviram af6410d
add notebook for easy display of markers with DAPI
gaviram 1af3b83
Refactor set brenner code, add reports generation
gaviram File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
28 changes: 28 additions & 0 deletions
28
manuscript/markers_focus_boundries/markers_focus_boundries_NIH.csv
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,28 @@ | ||
,Lower_bound,Upper_bound | ||
ANAX11,1552.89,12113.94 | ||
DAPI,526.69,5325.03 | ||
SNCA,1875.86,9472.52 | ||
TUJ1,1780.59,27767.24 | ||
DCP1A,3894.81,7877.93 | ||
NEMO,5658.35,22129.45 | ||
CLTC,3112.89,14333.32 | ||
PSD95,3126.78,19160.68 | ||
CD41,1043.58,12823.04 | ||
P54,1912.99,6289.01 | ||
TDP43,2150.63,6611.21 | ||
GM130,4220.58,16063.77 | ||
Phalloidin,5160.47,16337.9 | ||
TOMM20,3055.4,12867.37 | ||
Calreticulin,3176.28,11236.56 | ||
LAMP1,1974.96,7498.93 | ||
FMRP,1576.6,14209.38 | ||
SQSTM1,4203.71,26472.39 | ||
G3BP1,1448.33,8868.45 | ||
KIF5A,2952.11,18337.85 | ||
PEX14,3995.18,12902.94 | ||
PML,2557.14,8454.94 | ||
PURA,1779.85,10983.35 | ||
TIA1,2108.8,12486.45 | ||
FUS,939.45,15847.03 | ||
MitoTracker,2036.35,12753.4 | ||
NCL,454.29,1741.87 |
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To avoid dups, I think you can just extend the original color map with the new markers.
Meaning, self.COLOR_MAPPINGS_NIH = {**self.THE_ORIGINAL_COLOR_MAPPINS} # to copy
self.COLOR_MAPPINGS_NIH.update({NEW KEYS AND VALUES})