File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed
SequenceAnalysis/src/org/labkey/sequenceanalysis Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -138,9 +138,18 @@ private void verifySequenceDataPresent(Logger log)
138138 log .info ("verifying sequence data files present" );
139139 TableInfo ti = SequenceAnalysisSchema .getTable (SequenceAnalysisSchema .TABLE_READ_DATA );
140140 TableSelector ts = new TableSelector (ti );
141+
142+ log .info ("Inspecting ReadData" );
141143 List <ReadDataImpl > readDatas = ts .getArrayList (ReadDataImpl .class );
144+ int i = 0 ;
142145 for (ReadDataImpl rd : readDatas )
143146 {
147+ i ++;
148+ if (i % 250 == 0 )
149+ {
150+ log .info ("readdata " + i + " of " + readDatas .size ());
151+ }
152+
144153 if (rd .getFileId1 () != null )
145154 {
146155 ExpData d = ExperimentService .get ().getExpData (rd .getFileId1 ());
@@ -191,11 +200,19 @@ else if (!d.getFile().exists())
191200 }
192201
193202 //also check analyses
203+ log .info ("Inspecting Analyses" );
194204 TableInfo analysesTable = SequenceAnalysisSchema .getTable (SequenceAnalysisSchema .TABLE_ANALYSES );
195205 TableSelector tsAnalyses = new TableSelector (analysesTable );
196206 List <AnalysisModelImpl > analyses = tsAnalyses .getArrayList (AnalysisModelImpl .class );
207+ i = 0 ;
197208 for (AnalysisModelImpl m : analyses )
198209 {
210+ i ++;
211+ if (i % 250 == 0 )
212+ {
213+ log .info ("analysis " + i + " of " + analyses .size ());
214+ }
215+
199216 if (m .getAlignmentFile () != null )
200217 {
201218 ExpData d = m .getAlignmentData ();
You can’t perform that action at this time.
0 commit comments