From mboxrd@z Thu Jan 1 00:00:00 1970 From: Johannes Meisig Subject: using variables defined by org mode table in R leads to invalid function error on remote host Date: Sun, 08 Jul 2012 12:17:49 +0200 Message-ID: <4FF95E4D.9030302@biologie.hu-berlin.de> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([208.118.235.92]:55638) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SnoYu-0006r7-NI for emacs-orgmode@gnu.org; Sun, 08 Jul 2012 06:17:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SnoYs-0008CA-PY for emacs-orgmode@gnu.org; Sun, 08 Jul 2012 06:17:56 -0400 Received: from ir1.cms.hu-berlin.de ([141.20.1.146]:15067) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SnoYs-0008BW-J0 for emacs-orgmode@gnu.org; Sun, 08 Jul 2012 06:17:54 -0400 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hi, adding to this question: http://lists.gnu.org/archive/html/emacs-orgmode/2012-06/msg00677.html I have the following problem. If I define a table in an .org file and then try to use it in R as a variable, it's no problem on the local host. However, remotely I get the error: Invalid function: with-parsed-tramp-file-name The following code lines are sort of a minmal example for the behavior: (leave the first line away for local execution) #+PROPERTY: dir /foo@bar://home/user #+TBLNAME: genes | names | |--------------------| | ENSMUSG00000000031 | | ENSMUSG00000063856 | | ENSMUSG00000006056 | #+BEGIN_SRC R :session :var genes=genes print(genes[,1]) #+END_SRC Any ideas? Thanks a lot, Johannes