Skip to content

Commit

Permalink
Fix JBrowseTest (#330)
Browse files Browse the repository at this point in the history
  • Loading branch information
labkey-jeckels authored Jan 7, 2025
1 parent 2d4b730 commit 0728b90
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,11 @@ private void setPath(ProcessBuilder pb)
if (!StringUtils.isEmpty(toolDir))
{
String path = System.getenv("PATH");

getLogger().debug("Existing PATH: " + path);
getLogger().debug("toolDir: " + toolDir);


if (path == null)
{
path = toolDir;
Expand Down
5 changes: 5 additions & 0 deletions SequenceAnalysis/test/configs/pipelineConfig.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">

<bean id="pipelineJobService" class="org.labkey.pipeline.api.PipelineJobServiceImpl">
<property name="appProperties">
<bean class="org.labkey.pipeline.api.properties.ApplicationPropertiesImpl">
<property name="toolsDirectory" value="@@SEQUENCEANALYSIS_TOOLS@@" />
</bean>
</property>
<property name="configProperties">
<bean class="org.labkey.pipeline.api.properties.ConfigPropertiesImpl">
<property name="softwarePackages">
Expand Down

0 comments on commit 0728b90

Please sign in to comment.