- Docker é uma plataforma Open Source escrito em Go, que é uma linguagem de programação de alto desempenho desenvolvida dentro do Google, que facilita a criação e administração de ambientes isolados.
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
#/usr/bin/env python3 | |
''' | |
Using exomedepth result and a bed file, organize a txt file with the exons in | |
the CNV region | |
usage: | |
python cnv_regions.py <path/to/exome_depth_output.txt> <path/to/bed_file.bed> <padding> | |
''' | |
__author__ = 'George Carvalho' |
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
from Bio.Seq import Seq | |
import pandas as pd | |
import csv | |
import sys | |
import os | |
def reverse_complement(sequence): | |
""" | |
Give me the sequence and I give you the reverse-complement of it | |
""" |
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 os | |
import sys | |
import pandas as pd | |
#Get the worklist as a parameter | |
worklist_bioinfo = sys.argv[1] | |
#Create DataFrame from worklist | |
header = ['pool', 'analysis_type', 'exame', 'control', 'gender'] | |
worklist_df = pd.read_csv(worklist_bioinfo, header=None, names=header) |
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 pandas as pd | |
import numpy as np | |
import os | |
import sys | |
bed_file = sys.argv[1] | |
name = bed_file.split('.')[0] | |
#import bed into dataframe | |
header = ['Chr', 'Start', 'End', 'Gene'] |
NewerOlder