1 new commit in galaxy-central:
https://bitbucket.org/galaxy/galaxy-central/commits/880974da3ca4/
Changeset: 880974da3ca4
User: Jeremy Goecks
Date: 2014-04-25 03:24:33
Summary: Simplification for dowsampler in bam data provider
Affected #: 1 file
diff -r d1dd573cdce2bd122cbb0e98e947dc7992fe3ed0 -r 880974da3ca4d3d76bcf8b11184cb42c4aee95b7 lib/galaxy/visualization/data_providers/genome.py
--- a/lib/galaxy/visualization/data_providers/genome.py
+++ b/lib/galaxy/visualization/data_providers/genome.py
@@ -952,8 +952,7 @@
# Convert threshold to N for stepping through iterator.
n = int( 1/threshold )
- for e in itertools.islice( read_iterator, None, None, n ):
- yield e
+ return itertools.islice( read_iterator, None, None, n )
# Alternatate and much slower implementation that looks for pending pairs.
'''
Repository URL: https://bitbucket.org/galaxy/galaxy-central/
--
This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.
1 new commit in galaxy-central:
https://bitbucket.org/galaxy/galaxy-central/commits/203623b93150/
Changeset: 203623b93150
User: greg
Date: 2014-04-24 21:11:43
Summary: Fix for the execute_step() method in the SetEnvironment class.
Affected #: 1 file
diff -r 99056011d2dbbfa64f8b9ab56871e1d4da279f69 -r 203623b931507dcd182e2521911ab036021faf61 lib/tool_shed/galaxy_install/tool_dependencies/recipe/step_handler.py
--- a/lib/tool_shed/galaxy_install/tool_dependencies/recipe/step_handler.py
+++ b/lib/tool_shed/galaxy_install/tool_dependencies/recipe/step_handler.py
@@ -450,14 +450,20 @@
env_var_dicts = action_dict[ 'environment_variable' ]
for env_var_dict in env_var_dicts:
# Check for the presence of the $ENV[] key string and populate it if possible.
- env_var_dict = self.handle_environment_variables( app, tool_dependency, install_dir, env_var_dict, cmds )
+ env_var_dict = self.handle_environment_variables( app=app,
+ install_environment=install_environment,
+ tool_dependency=tool_dependency,
+ install_dir=install_dir,
+ env_var_dict=env_var_dict,
+ set_prior_environment_commands=cmds )
env_file_builder.append_line( **env_var_dict )
# The caller should check the status of the returned tool_dependency since return_code is not
# returned by this function.
return_code = env_file_builder.return_code
return tool_dependency, None, None
- def handle_environment_variables( self, app, tool_dependency, install_dir, env_var_dict, set_prior_environment_commands ):
+ def handle_environment_variables( self, app, install_environment, tool_dependency, install_dir, env_var_dict,
+ set_prior_environment_commands ):
"""
This method works with with a combination of three tool dependency definition tag sets, which are defined
in the tool_dependencies.xml file in the order discussed here. The example for this discussion is the
@@ -539,7 +545,6 @@
set_prior_environment_commands.append( 'echo %s: $%s' % ( inherited_env_var_name, inherited_env_var_name ) )
command = ' ; '.join( set_prior_environment_commands )
# Run the command and capture the output.
- install_environment = recipe_manager.InstallEnvironment()
command_return = install_environment.handle_command( app, tool_dependency, install_dir, command, return_output=True )
# And extract anything labeled with the name of the environment variable we're populating here.
if '%s: ' % inherited_env_var_name in command_return:
Repository URL: https://bitbucket.org/galaxy/galaxy-central/
--
This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.
1 new commit in galaxy-central:
https://bitbucket.org/galaxy/galaxy-central/commits/ffafb6350791/
Changeset: ffafb6350791
User: davebgx
Date: 2014-04-24 17:24:24
Summary: Get tool dependency status from the install model.
Affected #: 1 file
diff -r cf9cd1027e2a7e3f29201125fbbacf929ef55d0b -r ffafb6350791453b31c841e5462314bcd04ffa88 lib/tool_shed/galaxy_install/tool_dependencies/fabric_util.py
--- a/lib/tool_shed/galaxy_install/tool_dependencies/fabric_util.py
+++ b/lib/tool_shed/galaxy_install/tool_dependencies/fabric_util.py
@@ -86,7 +86,7 @@
install_dir=install_dir,
current_dir=current_dir,
initial_download=False )
- if tool_dependency.status in [ app.model.ToolDependency.installation_status.ERROR ]:
+ if tool_dependency.status in [ app.install_model.ToolDependency.installation_status.ERROR ]:
# If the tool_dependency status is in an error state, return it with no additional
# processing.
return tool_dependency
Repository URL: https://bitbucket.org/galaxy/galaxy-central/
--
This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.
1 new commit in galaxy-central:
https://bitbucket.org/galaxy/galaxy-central/commits/3b6e94371b8a/
Changeset: 3b6e94371b8a
User: dannon
Date: 2014-04-24 17:03:23
Summary: Add simplejson back again until 'anyjson' changes are pushed through bioblend.
Affected #: 1 file
diff -r de54998e192b99bd70751d692969b508463e1805 -r 3b6e94371b8a8e996cc8e317de8cbfe45790b94e eggs.ini
--- a/eggs.ini
+++ b/eggs.ini
@@ -61,6 +61,7 @@
pytz = 2013.9
requests = 2.2.1
Routes = 1.12.3
+simplejson = 2.1.1
sqlalchemy_migrate = 0.7.2
ssh = 1.7.14
SVGFig = 1.1.6
Repository URL: https://bitbucket.org/galaxy/galaxy-central/
--
This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.