aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDannyArends2015-03-19 21:13:31 +0100
committerDannyArends2015-03-19 21:13:31 +0100
commit2bec87b54eb34bb6154d6092c86d5bc8f7389705 (patch)
treea9c9af395d7eb51e1b9ddb01135fc6a76fb3ec3a
parentcd6f5b8c9470f309163b0fdc85374c408a96dfdc (diff)
downloadgenenetwork2-2bec87b54eb34bb6154d6092c86d5bc8f7389705.tar.gz
Adding the method and model parameters of R/qtl so that we can have the user choose to use non-parametric QTL mapping, binary phenotypes, etc
-rwxr-xr-xwqflask/wqflask/marker_regression/marker_regression.py19
1 files changed, 12 insertions, 7 deletions
diff --git a/wqflask/wqflask/marker_regression/marker_regression.py b/wqflask/wqflask/marker_regression/marker_regression.py
index db92e14c..c2caa03e 100755
--- a/wqflask/wqflask/marker_regression/marker_regression.py
+++ b/wqflask/wqflask/marker_regression/marker_regression.py
@@ -275,10 +275,15 @@ class MarkerRegression(object):
self.geno_to_rqtl_function()
+ #Danny @t Zachary, these two additional parameters should be be provided by the user, they can be drop down options in the interface
+
+ model = "normal" # Model can be "normal","binary","2part","np"
+ method = "em" # Method can be "em","imp","hk","ehk","mr","mr-imp","mr-argmax"
+
## Get pointers to some common R functions
r_library = ro.r["library"] # Map the library function
r_c = ro.r["c"] # Map the c function
- r_sum = ro.r["sum"] # Map the ncol function
+ r_sum = ro.r["sum"] # Map the sum function
print(r_library("qtl")) # Load R/qtl
@@ -307,7 +312,7 @@ class MarkerRegression(object):
# for debug: write_cross(cross_object, "csvr", "test.csvr")
# Scan for QTLs
- covar = self.create_covariates(cross_object)
+ covar = self.create_covariates(cross_object) # Create the additive covariate matrix
if self.pair_scan:
if(r_sum(covar)[0] > 0):
@@ -315,20 +320,20 @@ class MarkerRegression(object):
else:
print("No covariates"); result_data_frame = scantwo(cross_object, pheno = "the_pheno")
- print("pair scan results:", result_data_frame)
+ print("Pair scan results:", result_data_frame)
return 0
else:
if(r_sum(covar)[0] > 0):
- print("Using covariate"); result_data_frame = scanone(cross_object, pheno = "the_pheno", addcovar = covar)
+ print("Using covariate"); result_data_frame = scanone(cross_object, pheno = "the_pheno", addcovar = covar, model=model, method=method)
else:
- print("No covariates"); result_data_frame = scanone(cross_object, pheno = "the_pheno")
+ print("No covariates"); result_data_frame = scanone(cross_object, pheno = "the_pheno", model=model, method= method)
if int(self.num_perm) > 0: # Do permutation (if requested by user)
if(r_sum(covar)[0] > 0):
- perm_data_frame = scanone(cross_object, pheno_col = "the_pheno", addcovar = covar, n_perm = int(self.num_perm))
+ perm_data_frame = scanone(cross_object, pheno_col = "the_pheno", addcovar = covar, n_perm = int(self.num_perm), model=model, method= method)
else:
- perm_data_frame = scanone(cross_object, pheno_col = "the_pheno", n_perm = int(self.num_perm))
+ perm_data_frame = scanone(cross_object, pheno_col = "the_pheno", n_perm = int(self.num_perm), model=model, method= method)
self.process_rqtl_perm_results(perm_data_frame) # Functions that sets the thresholds for the webinterface