Re: [galaxy-dev] Nightly testing status on the (Test) Tool Shed

2014-02-20 Thread Peter Cock
, On Thu, Feb 20, 2014 at 2:56 AM, Greg Von Kuster g...@bx.psu.edu wrote: Hi Peter, On Wed, Feb 19, 2014 at 9:33 PM, Greg Von Kuster g...@bx.psu.edu wrote: In any case, we have a fix for out move_directory_files which Dave is now committing. So your tests should pass with tonight's run -

Re: [galaxy-dev] Nightly testing status on the (Test) Tool Shed

2014-02-20 Thread Ross
if a tool failed we all really benefit from seeing as much as we can - as securely as we can. Can we safely expose them somewhere protected? On Thu, Feb 20, 2014 at 8:59 PM, Peter Cock p.j.a.c...@googlemail.comwrote: , On Thu, Feb 20, 2014 at 2:56 AM, Greg Von Kuster g...@bx.psu.edu wrote:

Re: [galaxy-dev] Nightly testing status on the (Test) Tool Shed

2014-02-20 Thread Peter Cock
On Thu, Feb 20, 2014 at 9:59 AM, Peter Cock p.j.a.c...@googlemail.com wrote: On Thu, Feb 20, 2014 at 2:56 AM, Greg Von Kuster g...@bx.psu.edu wrote: Your installation recipe for mira attempts to download a binary and if that fails, it echoes an error, but still performs set_environment

Re: [galaxy-dev] package_r_xx problem: X11 is not available

2014-02-20 Thread Geert Vandeweyer
Hi, Compilation/installing works now. Using this R from the commandline no longer complains about missing X. With regards to cairo, I don't think I explicitly need it, but as I understood it, it was used in case there was no X11 server on the system? would you add it to the main toolshed?

Re: [galaxy-dev] package_r_xx problem: X11 is not available

2014-02-20 Thread Björn Grüning
Hello, Hi, Compilation/installing works now. Using this R from the commandline no longer complains about missing X. With regards to cairo, I don't think I explicitly need it, but as I understood it, it was used in case there was no X11 server on the system? Not sure, I will add it if

[galaxy-dev] Running out of memory on data download

2014-02-20 Thread Michael Römer
Dear all, We run our Galaxy server in a virtual machine with less than 1GB RAM. When I'm trying to download results via the Download button in the corresponding history entry that are larger than 1GB, the results file is loaded into memory. This leads to the galaxy process being killed, due to

Re: [galaxy-dev] Running out of memory on data download

2014-02-20 Thread Dannon Baker
My first guess is that it's likely this is due to 'debug = True' being set in your universe_wsgi.ini. If you set this to false and restart, the entire request will no longer be loaded into memory. -Dannon ___ Please keep all replies on the

Re: [galaxy-dev] Running out of memory on data download

2014-02-20 Thread Björn Grüning
Hi Michael, are you compressing the results during download? Cheers, Bjoern Dear all, We run our Galaxy server in a virtual machine with less than 1GB RAM. When I'm trying to download results via the Download button in the corresponding history entry that are larger than 1GB, the results

Re: [galaxy-dev] Running out of memory on data download

2014-02-20 Thread Michael Römer
Hi Bjoern, No, I'm not compressing the results. However, Dannon pointed out the problem: My first guess is that it's likely this is due to 'debug = True' being set in your universe_wsgi.ini. If you set this to false and restart, the entire request will no longer be loaded into

Re: [galaxy-dev] Nightly testing status on the (Test) Tool Shed

2014-02-20 Thread Greg Von Kuster
Hi Peter, Regarding youyr previous question about why the more usefule log resutls are not returned for display in the Tool Shed, the reason is that our use of fabric's local command for installing tool dependnecies restricts us from bewing able to capture that information. We are currently

[galaxy-dev] Error when installing package_galaxy_utils

2014-02-20 Thread Sarah Diehl
Hi everyone, I just updated our local Galaxy installation to the latest dist version and also did the tool migration steps (./scripts/migrate_tools/0009_tools.sh). However, the package galaxy_utils gave me an error and I don't have the slightest idea what happened. So any help to figure out

[galaxy-dev] Fix for need_late_validation error when running workflow with XY_Plot_1 tool

2014-02-20 Thread Jim Johnson
Attempting to run a workflow with the tool XY_Plot_1 results in an error when trying to display the workflow steps. The local dep_value variable is undefined. The XY_Plot_1 tool has contains a repeat with a DataToolParameter input and 2 ColumnListParameter xcol, ycol dependent on the

[galaxy-dev] Database and FTP setup

2014-02-20 Thread Conrad, Turner Allen
Hi, I'm not experienced with postgres and ftp and am thus having difficulties setting up an ftp server on my local Galaxy instance, but it is essential as our files are all over 2GB. The admin support page (https://wiki.galaxyproject.org/Admin/Config/Upload%20via%20FTP) is a little fuzzy on

[galaxy-dev] Database and ftp setup

2014-02-20 Thread Conrad, Turner Allen
Hi, I'm not experienced with postgres and ftp and am thus having difficulties setting up an ftp server on my local Galaxy instance, but it is essential as our files are all over 2GB. The admin support page (https://wiki.galaxyproject.org/Admin/Config/Upload%20via%20FTP) is a little fuzzy on

[galaxy-dev] ImportError: No module named json

2014-02-20 Thread Fenglou Mao
I just upgraded our galaxy server to the latest version, and I got this error in many of the tools: Traceback (most recent call last): File ./scripts/set_metadata.py, line 14, in ? import json ImportError: No module named json And a find command below give many a few json eggs, please help. Why

Re: [galaxy-dev] ImportError: No module named json

2014-02-20 Thread Dannon Baker
The json module is included in python's standard library since python 2.6, which is the minimum version of python Galaxy currently supports. Are you using a python version older than that? ___ Please keep all replies on the list by using

Re: [galaxy-dev] ImportError: No module named json

2014-02-20 Thread Fenglou Mao
It is a little complicated here, The Galaxy server itself is running CentOS 6 with python 2.6, but the cluster nodes are running CentOS 5 with python 2.4. Mose jobs are running in the cluster nodes. My questions is: if there is a json module in galaxy-dist/eggs, why Galaxy is not picking it up?

Re: [galaxy-dev] Error in SICER tool

2014-02-20 Thread Jennifer Jackson
Hello Nikos, This is a known issue after the recent tool migrations. The ticket is here: https://trello.com/c/h9LSdfdS The root cause of the error is a missing fortran library. If you click on the eye for the associated log dataset, and scroll down through the full report down to the

Re: [galaxy-dev] ImportError: No module named json

2014-02-20 Thread Dannon Baker
Got it. We dropped the simplejson egg during the last release (and any you find are holdovers from previous versions of galaxy) in favor of the stdlib module. The relevant module from your find would have been simplejson-2.1.1, and the rest are unrelated. If possible, I'd *really* recommend

Re: [galaxy-dev] ImportError: No module named json

2014-02-20 Thread Fenglou Mao
Thanks for the answer. I am talking to our sysadmin to upgrade cluster nodes from CentOS 5 to CentOS 6. Fenglou On Feb 20, 2014, at 2:18 PM, Dannon Baker dannon.ba...@gmail.com wrote: Got it. We dropped the simplejson egg during the last release (and any you find are holdovers from

Re: [galaxy-dev] Error when installing package_galaxy_utils

2014-02-20 Thread Nate Coraor
Hi Sarah, This looks a lot like a transient filesystem error. If you attempt to reinstall the repository, do you get the same error? --nate On Thu, Feb 20, 2014 at 10:48 AM, Sarah Diehl di...@ie-freiburg.mpg.dewrote: Hi everyone, I just updated our local Galaxy installation to the latest

Re: [galaxy-dev] Database and FTP setup

2014-02-20 Thread Nate Coraor
Hi Turner, You should be connecting to the database that Galaxy is using, specified in the database_connection option in universe_wsgi.ini. If you have not yet started Galaxy at least once, then the tables will not have been created yet. Once you run Galaxy and the tables have been created, you

Re: [galaxy-dev] Database and FTP setup

2014-02-20 Thread Conrad, Turner Allen
Thanks, Nate! Got it to run after playing with the postgresql url, table was created, and I began populating it with my admin account. I also prepared the database for ftp by creating a user for lookup. As for proftpd, I have it installed, but am not quite sure what do now. How must I edit the

Re: [galaxy-dev] Database and FTP setup

2014-02-20 Thread Nate Coraor
Hi Turner, In universe_wsgi.ini, set 'use_pbkdf2 = False' in the '[app:main]' section. You probably do not need to make any changes to PostgreSQL's configuration unless your database is running on a different host from your Galaxy server. For proftpd.conf, the most important bits are these: #

Re: [galaxy-dev] ImportError: No module named json

2014-02-20 Thread Fenglou Mao
Thanks, I will try this tomorrow. Fenglou On 20 February 2014 22:32, Nate Coraor n...@bx.psu.edu wrote: Hi Fenglou, In similar instances, I've simply compiled my own version of Python 2.7 and placed it in a cluster-wide filesystem, then used the environment_setup_file option in