Skip to content

Instantly share code, notes, and snippets.

View fomightez's full-sized avatar

Wayne's Bioinformatics Code Portal fomightez

View GitHub Profile
@fomightez
fomightez / MoHassan01main.ipynb
Created April 3, 2024 16:13
Further investigating SO https://stackoverflow.com/q/78267508/8508004 THIS TIME ALL OF MAIN TO ATTEMPT
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@fomightez
fomightez / MoHassan01main3with2plots.ipynb
Created April 3, 2024 15:30
Further investigating SO https://stackoverflow.com/q/78267508/8508004 THIS TIME TWO OF THE MANY PLOTS
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@fomightez
fomightez / For SO question about viewing tabs in HTML embedded using ipywidgets.ipynb
Last active April 1, 2024 19:49
For SO question about viewing tabs in HTML embedded using ipywidgets, see [here](https://stackoverflow.com/q/78256901/8508004)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@fomightez
fomightez / SO Plot with trend line simple.ipynb
Created March 15, 2024 21:11
Adding a trend line after the fact in a different cell of a notebook.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@fomightez
fomightez / SO Plot with trend line.ipynb
Last active March 15, 2024 21:04
Example adding trend line later in a different cell
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@fomightez
fomightez / guess_number_script_with reset_v1.py
Created March 11, 2024 00:28
Guessing game using ipywidgets to enter guesses and not legacy-from-consoles `input()`, related to https://discourse.jupyter.org/t/input-function-not-working/2290/13?u=fomightez
import ipywidgets as widgets
import random
max_secret = 10
secret = random.randint(1, max_secret)
guesses_allowed = 3
guesses_made = 0
game_still_going = True
# to leave out the quotes around strings sent to `ouptut.update()`, based on https://stackoverflow.com/a/70130979/8508004
@fomightez
fomightez / demo_Fasta2Stucture.md
Last active July 8, 2025 19:53
Using mybinder dekstop to demo use of Fasta2Stucture that uses tkinter

Walkthrough for installation and trial use of Fasta2Structure in your browser in temporary remote sessions served via MyBinder

Benefits:

  • Runs remotely so nothing modified on your machine yet you can test Fasta2Structure use hands-on.
  • Almost everything is already prepared, only need to install one package (Biopython) and get the Fasta2Structure material to be demonstrated.
  • No login required.