Skip to content

Commit 0df977e

Browse files
committed
Set job status in SequenceAlignmentTask
1 parent 2fd324b commit 0df977e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/pipeline/SequenceAlignmentTask.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,8 @@ private void logEnvironment() throws PipelineJobException
294294

295295
private Map<ReadData, Pair<File, File>> performFastqPreprocessing(SequenceReadsetImpl rs) throws IOException, PipelineJobException
296296
{
297+
getJob().setStatus(PipelineJob.TaskStatus.running, "Fastq Preprocessing");
298+
297299
if (_resumer.isFastqPreprocessingDone())
298300
{
299301
getJob().getLogger().info("resuming FASTQ preprocessing from saved state");
@@ -1873,6 +1875,7 @@ private void restoreArchivedReadDataIfNeeded(Readset rs) throws PipelineJobExcep
18731875

18741876
if (rd.isArchived())
18751877
{
1878+
getJob().setStatus(PipelineJob.TaskStatus.running, "Downloading from SRA");
18761879
getPipelineJob().getLogger().info("Restoring files for readdata: " + rd.getRowid() + " / " + rd.getSra_accession());
18771880
if (!getPipelineJob().shouldAllowArchivedReadsets())
18781881
{

0 commit comments

Comments
 (0)