Skip to content

Commit

Permalink
lib: compress CSV files, #70
Browse files Browse the repository at this point in the history
  • Loading branch information
jtarraga committed Feb 19, 2021
1 parent 5ce8045 commit b9cace7
Show file tree
Hide file tree
Showing 5 changed files with 206 additions and 231 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ public enum FilterField {
}

public interface BioPAXProcessing {
void processNodes(List<Node> nodes);
void processRelations(List<Relation> relations);
void processNodes(List<Node> nodes) throws IOException;
void processRelations(List<Relation> relations) throws IOException;
}

public Neo4jBioPaxBuilder(CsvInfo csv, BioPAXProcessing bioPAXProcessing) {
Expand Down
Loading

0 comments on commit b9cace7

Please sign in to comment.