File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
SequenceAnalysis/src/org/labkey/sequenceanalysis/pipeline Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1894,10 +1894,10 @@ private void restoreArchivedReadDataIfNeeded(Readset rs) throws PipelineJobExcep
18941894 RestoreSraDataHandler .FastqDumpWrapper sra = new RestoreSraDataHandler .FastqDumpWrapper (getJob ().getLogger ());
18951895 if (doneFile .exists ())
18961896 {
1897- rdi .setFile (new File (outDir , rd .getSra_accession () + "_1.fastq" ), 0 );
1897+ rdi .setFile (new File (outDir , rd .getSra_accession () + "_1.fastq" ), 1 );
18981898 if (rd .getFileId2 () != null )
18991899 {
1900- rdi .setFile (new File (outDir , rd .getSra_accession () + "_2.fastq" ), 1 );
1900+ rdi .setFile (new File (outDir , rd .getSra_accession () + "_2.fastq" ), 2 );
19011901 }
19021902 }
19031903 else
@@ -1908,8 +1908,8 @@ private void restoreArchivedReadDataIfNeeded(Readset rs) throws PipelineJobExcep
19081908 }
19091909
19101910 Pair <File , File > downloaded = sra .downloadSra (rd .getSra_accession (), outDir );
1911- rdi .setFile (downloaded .first , 0 );
1912- rdi .setFile (downloaded .second , 1 );
1911+ rdi .setFile (downloaded .first , 1 );
1912+ rdi .setFile (downloaded .second , 2 );
19131913
19141914 try
19151915 {
You can’t perform that action at this time.
0 commit comments