-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
EVA-3494 Ingest assembly in batches #125
Conversation
src/main/java/uk/ac/ebi/eva/contigalias/datasource/NCBIAssemblyDataSource.java
Outdated
Show resolved
Hide resolved
src/main/java/uk/ac/ebi/eva/contigalias/datasource/NCBIAssemblyDataSource.java
Outdated
Show resolved
Hide resolved
src/main/java/uk/ac/ebi/eva/contigalias/datasource/ENAAssemblyDataSource.java
Outdated
Show resolved
Hide resolved
scaffolds.add(scaffoldEntity); | ||
} | ||
|
||
public static AssemblyEntity getAssemblyEntity(List<String> lines) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Similar to the other comment, if this means the parseAssemblyData
method isn't being used anymore, would prefer it be removed rather than have duplicate logic.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's still there, actually I'm not sure either of the report readers' parseReport methods are being used since they parse the whole report in one go rather than batching
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You are right, they are not used anymore except for tests.
I have deleted them and updated the tests accordingly.
No description provided.