Skip to content
Olga Tsiouri edited this page Oct 5, 2020 · 34 revisions

bioinfo_gui_scripts

python scripts that can be easily transformed to gui programs for wet lab scientists to use

depedences:

  1. python3
  2. anaconda/miniconda
  3. biopython: conda install biopython
  4. Gooey: conda install -c conda-forge gooey
  5. Pandas: conda install -c anaconda pandas

example usage

to trasform any of the scripts to gui the only thing to do is to run: python my_favorite_script.py and a gui screen will pop up for you to use!!

example GUI

Extra notes for unix users

I recommend creating aliases for the python scripts. To do this:

  1. Open the bash_aliases file: nano ~/.bash_aliases
  2. Type alias my_favorite_script='python3 /path/to/my_favorite_script.py'
  3. close the file with Ctrl + X and type: source ~/.bash_aliases
  4. type my_favorite_script on the terminal and press enter(return key) and a gui screen will pop up for you to use!!
Clone this wiki locally