Skip to content

Commit

Permalink
Fix for gene search
Browse files Browse the repository at this point in the history
  • Loading branch information
jpfisher72 committed Apr 26, 2024
1 parent 1d8f847 commit 6d9be70
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
Binary file added immuscreen/public/igSCREEN_red.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added immuscreen/public/igSCREEN_red_light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion immuscreen/src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const Home = () => {
<Grid2 container spacing={6} sx={{ mr: "auto", ml: "auto", mt: "2rem" }}>
<Grid2 xs={12}>
<Image
src="/igSCREEN_light.png"
src="/igSCREEN_red_light.png"
width={400}
height={172}
alt="igSCREEN logo"
Expand Down
4 changes: 2 additions & 2 deletions immuscreen/src/common/components/HomeAppBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ const HomeAppBar = () => {
}}
>
<Image
src="/igSCREEN_dark.png"
src="/igSCREEN_red.png"
width={100}
height={50}
alt="igSCREEN logo"
Expand Down Expand Up @@ -155,7 +155,7 @@ const HomeAppBar = () => {
}}
>
<Image
src="/igSCREEN_dark.png"
src="/igSCREEN_red.png"
width={116}
height={50}
alt="igSCREEN logo"
Expand Down
2 changes: 1 addition & 1 deletion immuscreen/src/common/gbview/chrombpnetatactracks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const ChromBPNetAtacTracks: React.FC<ChromBPNetBulkAtacTrackProps> = ({

const defaultTracks: [string, string][] = []

for (let cell of defaultcelltypes) {
if (defaultcelltypes) for (let cell of defaultcelltypes) {
//Currently this is slightly broken in that it includes all monocyte experiments when "Mono" is cell since Mono is substring of all Monocyte S and U experiments, need to fix
const experiments = Object.entries(experimentInfo).filter(([experiment, info]) => experiment.includes(cell))
experiments.forEach(exp => {
Expand Down
2 changes: 1 addition & 1 deletion immuscreen/src/common/gbview/defaulttracks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export const TitledTrack: React.FC<{
const DefaultTracks: React.FC<DefaultTracksProps> = (props) => {
const [cTracks, setTracks] = useState<[string, string][]>(
[
["All iCREs", "https://downloads.wenglab.org/Calderon-Corces_activeCREs_iSCREEN.bigBed"],
["All iCREs", "https://downloads.wenglab.org/Calderon-Corces_activeCREs_iSCREEN_withcolors.bigBed"],
]
)
const height = useMemo(() => cTracks.length * 80, [cTracks])
Expand Down

0 comments on commit 6d9be70

Please sign in to comment.