![]() |
UniProtJAPI - ArchivesUniProt Knowledgebase Release [2012_01]About UniProtJAPI ArchiveThe main UniProtJAPI site is updated with the latest data available from UniProt. The UniProtJAPI Archive sites have been set up so there is a stable data source for at least two years to a particular major UniProt release. These data sources will be suitable for referring in your own applications for the two year period. List Of Available Releases
Access The UniProtJAPI Archive via MavenEBI's maven repository contains all the necessary dependancies and files to integrate a UniProtJAPI Archive into your Java application. Firstly you need to specify the EBI Maven repostitory as the location to find the UniProtJAPI. To do this you need to add the below repository either to you pom xml or you add this globally through your settings.xml file. For more, on using repositories, please refer to the Maven documentation available here. <repository>
<id>ebi-repo</id>
<nam>>ebi-repo</name>
<url>http://www.ebi.ac.uk/~maven/m2repo</url>
</repository>
The last part of your configuration is specify the dependancy on the UniProtJAPI Archive and the version of interest, you do this by adding the below dependancy section to you pom file. For more details, on dependancy mechanism, please refer to the Maven documentation available here. <dependency>
<groupId>uk.ac.ebi.uniprot.kraken</groupId>
<artifactId>uniprotjapi-archive</artifactId>
<version>12</version>
</dependency>
Please note that the version you specify is only the major release number not the point release number. ![]() |