added shell script to format muts for mcsm NA

This commit is contained in:
Tanushree Tunstall 2021-02-12 17:38:42 +00:00
parent a6f1f65acf
commit 84970a667c
5 changed files with 54 additions and 31 deletions

View file

@ -5,36 +5,41 @@ Created on Fri Feb 12 12:15:26 2021
@author: tanu
"""
#%% load packages
import os
homedir = os.path.expanduser('~')
os.chdir (homedir + '/git/LSHTM_analysis/mcsm_na')
from submit import *
#%%#####################################################################
#EXAMPLE RUN for different stages
#=====================
# STAGE: submit.py
#=====================
os.chdir (homedir + '/git/LSHTM_analysis/dynamut')
from submit_mcsm_na import *
########################################################################
# variables
my_host = 'http://biosig.unimelb.edu.au'
my_prediction_url = f"{host}/mcsm_na/run_prediction"
my_prediction_url = f"{my_host}/mcsm_na/run_prediction_list"
print(my_prediction_url)
my_outdir = homedir + '/git/LSHTM_analysis/mcsm_na'
# TODO: add cmd line args
#gene = 'gid'
drug = 'streptomycin'
datadir = homedir + '/git/Data'
indir = datadir + '/' + drug + '/input'
outdir = datadir + '/' + drug + '/output'
my_pdb_file = homedir + '/git/Data/streptomycin/input/gid_complex.pdb'
my_mutation_list = homedir + '/git/LSHTM_analysis/mcsm_na/input_snp_test_b1.csv'
my_suffix = 'gid_test1'
my_nuc_type = 'RNA'
my_pdb_file = indir + '/gid_complex.pdb'
#----------------------------------------------
# example 1: 2 snps in a file
#----------------------------------------------
# batch 1: 00.txt
my_mutation_list = outdir + '/snp_batches/20/snp_batch_00.txt'
my_suffix = 'gid_b1'
#RAN: 11 Feb, ~17:37
#==========================
# CALL: submit_mcsm_na()
# Data: gid+streptomycin
#==========================
submit_mcsm_na(host_url = my_host
, pdb_file = my_pdb_file
, mutation_list = my_mutation_list
, chain = my_chain
, email_address = my_email
, prediction_url = my_prediction_url
, output_dir = my_outdir
, outfile_suffix = my_suffix)
#%%###################################################################
, pdb_file = my_pdb_file
, mutation_list = my_mutation_list
, nuc_type = my_nuc_type
, prediction_url = my_prediction_url
, output_dir = outdir
, outfile_suffix = my_suffix)
#%%#####################################################################