Basic installation script for create_ap
- Save the
install_create_ap.shfile in your system (for example /home folder).
- Give the execute permission to the file:
chmod +x install_create_ap.sh
- Run the script:
./install_create_ap.sh
| my $DNA = <STDIN>; | |
| chomp $DNA; | |
| $protein = myfunc2($DNA); | |
| print "Protein Sequence:\n"; | |
| print($protein, "\n"); | |
| sub myfunc2 { | |
| my %aacode = ( | |
| TTT => "F", TTC => "F", TTA => "L", TTG => "L", |
| #!/bin/bash | |
| sudo add-apt-repository ppa:noobslab/themes | |
| sudo add-apt-repository ppa:noobslab/icons | |
| sudo add-apt-repository ppa:ravefinity-project/ppa | |
| sudo add-apt-repository ppa:snwh/pulp | |
| sudo apt-get update | |
| sudo apt-get install humanitary-gtk-theme | |
| sudo apt-get install humanitary-icon-theme |
Basic installation script for create_ap
install_create_ap.sh file in your system (for example /home folder).chmod +x install_create_ap.sh./install_create_ap.sh| list_to_iter = [ ["a", "b"], ["c", "d"], ["e", "f"] ] | |
| for item in list_to_iter: | |
| print(item) | |
| for i in range(len(list_to_iter)): | |
| print(list_to_iter[i]) | |
| for (i, item) in enumerate(list_to_iter): |
| #!/usr/bin/python | |
| # -*- coding: utf-8 -*- | |
| import os, sys, subprocess | |
| # Constant | |
| INPUT_DIR = "input" | |
| ACCEPTED_FILE_FORMAT = ["csv", "txt", "list"] | |
| def asciify(string): |
| #!/usr/bin/python | |
| # *-* coding: utf-8 *-* | |
| import subprocess | |
| import sys | |
| # get_all_user_command = "ipa user-find" | |
| # all_user_info = subprocess.check_output(get_all_user_command, shell=True) |