-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinitiate_infrastructure_arpat.py
28 lines (22 loc) · 1.25 KB
/
initiate_infrastructure_arpat.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
"""
"""
from infrastructure.main import *
import time
temp_repo_dir = "/home/raf_pc/Kemal/Temp/mouse"
data_repo_dir = "/home/raf_pc/Kemal/Data/sam_arpat"
script_path_infrastructure = "/home/raf_pc/Kemal/RiboSeqAnalysis/infrastructure/"
disomes = [os.path.join(data_repo_dir, i) for i in ["SRR9715828.sam", "SRR9715826.sam"]]
monosomes = [os.path.join(data_repo_dir, i) for i in ["SRR1930189.sam", "SRR1930188.sam"]]
I = Infrastructre(temp_repo_dir,
ensembl_release=102,
organism="mus_musculus",
include_gene3d=True,
verbose=True)
I.riboseq_sixtymers = RiboSeqSixtymers(I.temp_repo_dir, monosomes, disomes, "sixtymers",
riboseq_assign_to="best_transcript", riboseq_assign_at=-15,
protein_genome_instance=I.protein_genome,
gene_info_dictionary=I.gene_info,
exclude_genes=I.exclude_genes, verbose=I.verbose,
footprint_len_experiment=list(range(45,71)), # From paper
footprint_len_background=list(range(26, 36)) # From paper
)