Generally, to import a python module programatically when you know the file's path, you could do something like this:
import importlib.util
import systermux-setup-storage
pkg install wget openssl-tool proot -y && hash -r && wget https://raw.githubusercontent.com/EXALAB/AnLinux-Resources/master/Scripts/Installer/Debian/debian.sh && bash debian.sh
./start-debian.sh
wget https://raw.githubusercontent.com/EXALAB/AnLinux-Resources/master/Scripts/DesktopEnvironment/Apt/Xfce4/de-apt-xfce4.sh && bash de-apt-xfce4.sh
Known Issues: On High Sierra there are problems related to the screen brightness and sleep issues.
Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...
// see: https://github.com/chadoe/docker-cleanup-volumes
$ docker volume rm $(docker volume ls -qf dangling=true)
$ docker volume ls -qf dangling=true | xargs -r docker volume rm
| #!/bin/sh | |
| ## | |
| ## Bash install script for mongo 3.2 for Ubuntu 15.04, because of | |
| ## the replacement of upstart with systemd | |
| ## | |
| ## - AUTHOR: Alexandru Budurovici <https://w0rldart.com> | |
| ## - VERSION: 1.0 | |
| ## |
| """Demonstration of server-sent events with Tornado. To see the | |
| stream, you can either point your browser to ``http://localhost:8080`` | |
| or use ``curl`` like so:: | |
| $ curl http://localhost:8080/events | |
| """ | |
| import signal | |
| from tornado import web, gen |
| ## RNA-seq analysis with DESeq2 | |
| ## Stephen Turner, @genetics_blog | |
| # RNA-seq data from GSE52202 | |
| # http://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=gse52202. All patients with | |
| # ALS, 4 with C9 expansion ("exp"), 4 controls without expansion ("ctl") | |
| # Import & pre-process ---------------------------------------------------- | |
| # Import data from featureCounts |
| <VirtualHost *> | |
| ServerName example.com | |
| WSGIDaemonProcess www user=max group=max threads=5 | |
| WSGIScriptAlias / /home/max/Projekte/flask-upload/flask-upload.wsgi | |
| <Directory /home/max/Projekte/flask-upload> | |
| WSGIProcessGroup www | |
| WSGIApplicationGroup %{GLOBAL} | |
| Order deny,allow |