Skip to content

Commit 0728b90

Browse files
Fix JBrowseTest (#330)
1 parent 2d4b730 commit 0728b90

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

SequenceAnalysis/api-src/org/labkey/api/sequenceanalysis/run/AbstractCommandWrapper.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,11 @@ private void setPath(ProcessBuilder pb)
204204
if (!StringUtils.isEmpty(toolDir))
205205
{
206206
String path = System.getenv("PATH");
207+
208+
getLogger().debug("Existing PATH: " + path);
209+
getLogger().debug("toolDir: " + toolDir);
210+
211+
207212
if (path == null)
208213
{
209214
path = toolDir;

SequenceAnalysis/test/configs/pipelineConfig.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
55

66
<bean id="pipelineJobService" class="org.labkey.pipeline.api.PipelineJobServiceImpl">
7+
<property name="appProperties">
8+
<bean class="org.labkey.pipeline.api.properties.ApplicationPropertiesImpl">
9+
<property name="toolsDirectory" value="@@SEQUENCEANALYSIS_TOOLS@@" />
10+
</bean>
11+
</property>
712
<property name="configProperties">
813
<bean class="org.labkey.pipeline.api.properties.ConfigPropertiesImpl">
914
<property name="softwarePackages">

0 commit comments

Comments
 (0)