| Use case : Write a post-process |
|
|
|
|
Even though BioMAJ is shipped with some post-processes, you might need to write your owns. Here are some points that will help you in the process :
An example of a script that concatenates several files into one, and adds the resulting file as a dependency : workdir=$datadir/$dirversion/future_release/flat cd $workdir; for file in $@ do files=$files" "$file done cat $files > $workdir/output ; echo $PP_DEPENDENCE$workdir/output;
|




