Spring Batch for sequencing DNA
A computational model for DNA damage repair and may could explain how CRISPR Cas9 works

Spring Batch for sequencing DNA A computational model for DNA damage repair and may could explain how CRISPR Cas9 works

Spring Batch reads and process DNA sequentially until reaching commit-interval value then it writes transformed items (DNA) simultaneously.

Below is a code representation of the same concepts shown above:


List items = new Arraylist();

for(int i = 0; i < commitInterval; i++){

Object item = itemReader.read()

Object processedItem = itemProcessor.process(item);

items.add(processedItem);

}

itemWriter.write(items);


That sequence diagram above is haunting me since 2012 it is useful for something I don't know how but I have got some strange feeling when I have seen it since 2012.

Please visit : https://www.academia.edu/107861369/Spring_Batch_for_sequencing_DNA