This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import subprocess | |
import glob | |
# Functions | |
def read_multifasta(file_path): | |
is_entry = False | |
fasta_dict = {} | |
sequence = [] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Sets chmod 755 for folder and all subfolders | |
find /opt/lampp/htdocs -type d -exec chmod 755 {} \; | |
# Sets chmod 655 for all files in this folder & subfolder | |
find /opt/lampp/htdocs -type f -exec chmod 644 {} \; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Sets chmod 755 for folder and all subfolders | |
find /opt/lampp/htdocs -type d -exec chmod 755 {} \; | |
# Sets chmod 655 for all files in this folder & subfolder | |
find /opt/lampp/htdocs -type f -exec chmod 644 {} \; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git clone <repo-address> | |
git tag -l | |
git checkout <tag-name> | |
git branch -D master | |
git checkout -b master |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Analyse data using a sliding window | |
slideFunct <- function(data, window, step){ | |
total <- length(data) | |
spots <- seq(from=1, to=(total-window), by=step) | |
result <- vector(length = length(spots)) | |
for(i in 1:length(spots)){ | |
result[i] <- median(data[spots[i]:(spots[i]+window)]) | |
} | |
return(result) | |
} |
NewerOlder