[Seqinr-commits] r1822 - pkg/R

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Wed Nov 26 14:14:40 CET 2014


Author: simonpenel
Date: 2014-11-26 14:14:40 +0100 (Wed, 26 Nov 2014)
New Revision: 1822

Modified:
   pkg/R/plot.SeqAcnucWeb.R
Log:
Replace gloalEnv by seqinrEnv in  plot.SeqAcnucWeb.R


Modified: pkg/R/plot.SeqAcnucWeb.R
===================================================================
--- pkg/R/plot.SeqAcnucWeb.R	2014-11-26 13:13:43 UTC (rev 1821)
+++ pkg/R/plot.SeqAcnucWeb.R	2014-11-26 13:14:40 UTC (rev 1822)
@@ -25,8 +25,8 @@
   
   GiveMeTheMotherSequence <- paste("me n=", x, sep = "") 
   query(listname = "me", query = GiveMeTheMotherSequence, socket = socket)
-  MotherLength <- as.numeric(getLength(get("me", .GlobalEnv)$req[[1]]))
-  MotherName <- get("me", .GlobalEnv)$req[[1]]
+  MotherLength <- as.numeric(getLength(get("me", .seqinrEnv)$req[[1]]))
+  MotherName <- get("me", .seqinrEnv)$req[[1]]
   if(verbose) cat("\nMotherLength = ", MotherLength)
 
   #
@@ -58,14 +58,14 @@
 
     result <- try(query(socket = socket, listname = "tmp", query = q))
     if( inherits(result, "try-error")) next
-    if(get("tmp", .GlobalEnv)$nelem == 0) next
-    if(is.na(get("tmp", .GlobalEnv)$req[[1]])) next
-    if(get("tmp", .GlobalEnv)$req[[1]] == x ) next
+    if(get("tmp", .seqinrEnv)$nelem == 0) next
+    if(is.na(get("tmp", .seqinrEnv)$req[[1]])) next
+    if(get("tmp", .seqinrEnv)$req[[1]] == x ) next
 
     ispresent[i] <- TRUE
       
-    u <- lapply(get("tmp", .GlobalEnv)$req, getLocation)
-    names(u) <- get("tmp", .GlobalEnv)$req
+    u <- lapply(get("tmp", .seqinrEnv)$req, getLocation)
+    names(u) <- get("tmp", .seqinrEnv)$req
     nb[i] <- length(u)
     posi[[i]] <- u
   }
@@ -99,9 +99,9 @@
   #  workspace cleanup
   #
   
-  rm("me", pos = .GlobalEnv)
-  rm("filles", pos = .GlobalEnv)
-  rm("tmp", pos = .GlobalEnv)
+  rm("me", pos = .seqinrEnv)
+  rm("filles", pos = .seqinrEnv)
+  rm("tmp", pos = .seqinrEnv)
   
   #
   # Return invisibly the result:



More information about the Seqinr-commits mailing list