Difference between revisions of "Statistical Algorithms Importer: StatusUpdate"

From Gcube Wiki
Jump to: navigation, search
(Python example)
 
(6 intermediate revisions by the same user not shown)
Line 8: Line 8:
 
== Updating the status of a process ==
 
== Updating the status of a process ==
  
It is sufficient to '''write a file named "status.txt" ''' locally to the process indicating '''a number from 0 to 100'''. The DataMiner will transform this information into a WPS status, also visible through the status bar of the DataMiner GUI. The algorithm's status is always forced to 100 by DataMiner at the end of the computation.  
+
It is sufficient to '''write a file named "status.txt" ''' locally to the process indicating '''a number from 20 to 90'''. The [[DataMiner_Manager|DataMiner]] will transform this information into a WPS status, also visible through the status bar of the DataMiner GUI. The algorithm's status is always forced to 100 by DataMiner at the end of the computation.  
  
For example, the following R script writes a local ./status.txt file indicating its internal status.  
+
=== Python example ===
 +
For example, the following Python script writes a local status.txt file indicating its internal status.
 +
 
 +
<source lang = "python">
 +
....
 +
 
 +
def updateStatus(perc):
 +
      with open('status.txt','w') as st:
 +
          st.write(perc)
 +
 
 +
....
 +
updateStatus('20')
 +
doJob1()
 +
updateStatus('60')
 +
doJob2()
 +
updateStatus('90')
 +
 
 +
</source>
 +
 
 +
=== R example ===
 +
 
 +
For example, the following R script writes a local status.txt file indicating its internal status.  
  
 
<source lang = "java">
 
<source lang = "java">
Line 30: Line 51:
 
</source>
 
</source>
  
 +
==Related Links==
 +
* [[DataMiner_Manager|DataMiner Manager]]
 +
* [[Statistical_Algorithms_Importer|Statistical Algorithms Importer (SAI)]]
  
 
[[Category:Statistical Algorithms Importer]]
 
[[Category:Statistical Algorithms Importer]]

Latest revision as of 15:20, 22 June 2021

This page explains how to update the status of a process from a SAI-integrated algorithm.


Updating the status of a process

It is sufficient to write a file named "status.txt" locally to the process indicating a number from 20 to 90. The DataMiner will transform this information into a WPS status, also visible through the status bar of the DataMiner GUI. The algorithm's status is always forced to 100 by DataMiner at the end of the computation.

Python example

For example, the following Python script writes a local status.txt file indicating its internal status.

....
 
def updateStatus(perc):
       with open('status.txt','w') as st:
           st.write(perc)
 
....
updateStatus('20')
doJob1()
updateStatus('60')
doJob2()
updateStatus('90')

R example

For example, the following R script writes a local status.txt file indicating its internal status.

nseconds <- 60
 
nsteps = nseconds/10
 
for (i in 1:nsteps){
  status = i*100/nsteps
  cat("Status",status,"\n")
  write(status,file="status.txt")
  Sys.sleep(1)
 
}
 
output="test.txt"
write(nseconds,file=output)

Related Links