bio4j / dynamograph

GSoC 2014 project - a DynamoDB based graph DB
GNU Affero General Public License v3.0
4 stars 1 forks source link

writing to DynamoDB #16

Closed evdokim closed 10 years ago

evdokim commented 10 years ago

I'm going to clarify things that I we were talking during the last meeting.

alberskib commented 10 years ago

@evdokim Ok, in other words: For each dataset like GO, uniprot etc there shoul be parser that from files with data create abstract model (Map[String, AtributeValue]). Next there will be single Writer(the same for each dataset) that takes abstract model and save it to the database Thanks to it: hadling additional dataset require only writing specific parser. Correct?

evdokim commented 10 years ago

yes something like this. I think that writer can even don't know about dataset, it should have only maps with items together with tables names

alberskib commented 10 years ago

@evdokim Exactly it should operate on map(which is something like intermediate representation). Really similar concept could be found inside architecture of compilers.

evdokim commented 10 years ago

yes quite similar to IL