Is there any way to access ALL the publications in java attached to one swissprot entry?
I know how to use the method List<citation> citation = current.getCitationsNew(). I can get the titles of these publications too. However, the list of publications is not complete. For example, https://www.uniprot.org/uniprot/P0AD86/publications, publication 7 and 8 will not be included in the output.
I checked the documentations carefully: ttps://www.ebi.ac.uk/uniprot/japi/javadoc/uk/ac/ebi/kraken/interfaces/uniprot/UniProtEntry.html https://www.ebi.ac.uk/uniprot/japi/usage.html https://www.ebi.ac.uk/uniprot/japi/javadoc/uk/ac/ebi/uniprot/dataservice/query/class-use/Query.html#uk.ac.ebi.uniprot.dataservice.client.uniprot
I didn't find other useful functions from API. The only way I came up with is to use URL to access the source html page and parse the title out. I prefer not to do this as it is not stable and might not work in the future.
Is there any way to get the complete list of publication PubMed IDs or titles of one protein entry in java using existing API?
Thank you.