Skip to content
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

Higlass error #1115

Closed
Ahmad-Abdou opened this issue Feb 25, 2025 · 1 comment · Fixed by #1117
Closed

Higlass error #1115

Ahmad-Abdou opened this issue Feb 25, 2025 · 1 comment · Fixed by #1117
Labels
bug🐛 Something isn't working

Comments

@Ahmad-Abdou
Copy link

Image

Hello!
I was wondering if someone knows the problem, my project was working perfectly, but the project was left untouched for a couple months until today I tried to run it again and faced this error as you can see from the screenshot. I tried every single solution possible but didn't work.
Could someone help me?
this is the HTML

`

<title>Gosling Visualization</title> <script type="importmap"> { "imports": { "react": "https://esm.sh/react@18", "react-dom": "https://esm.sh/react-dom@18", "pixi": "https://esm.sh/pixi.js@6", "higlass": "https://esm.sh/[email protected]?external=react,react-dom,pixi", "gosling.js": "https://esm.sh/[email protected]?external=react,react-dom,pixi,higlass" } } </script>
    <div class="robot-container">
        <div class="robot-head" id="robotFace">
            <div class="antenna"></div>
            <div class="circuits">
                <div class="circuit circuit-1"></div>
                <div class="circuit circuit-2"></div>
            </div>
            <div class="eyes">
                <div class="eye"></div>
                <div class="eye"></div>
            </div>
        </div>
    
        <div class="qa-container" id="qaContainer">
            <div class="chat-interface">
                <button class="close-chat" id="closeChat" aria-label="Close chat">×</button>
                <h3>How can I help you?</h3>
                <div class="questions">
                    <button class="question-button" data-question="purpose">Question 1</button>
                    <button class="question-button" data-question="work">Question 2</button>
                    <button class="question-button" data-question="learn">Question 3</button>
                </div>
                <div class="answer" id="answerBox"></div>
            </div>
        </div>
    </div>

<script src="https://cdnjs.cloudflare.com/ajax/libs/pako/2.1.0/pako.min.js"></script>

<script type="module">
    import { PlotSpecManager } from './testGUI/PlotSpecManager.js';         
    import { all_buttons } from './testGUI/data_options.js';
    import { overlay } from './testGUI/overlay.js';

    const overlay_container = document.getElementById('overlay');
    const buttons_container = document.getElementById('buttons');

    import { URLfromFile, URLfromServer, GoslingPlotWithLocalData } from './testGUI/plot.js';
    import { trackTemplate } from './testGUI/track_spec.js';
    import {generateTracks} from './testGUI/track.js';
    import {robotInit}  from './testGUI/robot.js'


    document.addEventListener('DOMContentLoaded', async function () { 
        await overlay(overlay_container);
        await all_buttons(buttons_container);
        await generateTracks();
        robotInit();
    });
</script>
`
@Ahmad-Abdou Ahmad-Abdou added the bug🐛 Something isn't working label Feb 25, 2025
@sehilyi
Copy link
Member

sehilyi commented Feb 25, 2025

Hi @Ahmad-Abdou, this seems to be related to the issue we found recently. You can follow the instructions described here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug🐛 Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants