Giter VIP home page Giter VIP logo

pdb2rdf's People

Stargazers

Angus H. avatar Arto Bendiken avatar

pdb2rdf's Issues

crystal type addition

There is no crystal type

http://quebec.pdb.bio2rdf.org/describe/?url=http://bio2rdf.org/pdb:119D/crystal&
sid=14

Original issue reported on code.google.com by [email protected] on 1 Oct 2010 at 3:25

Update the pdb2rdf project website

Make sure that the site at http://semanticscience.org/projects/pdb2rdf needs 
to be updated.

Links to the working version of the GUI also need to be checked.

Original issue reported on code.google.com by [email protected] on 31 May 2010 at 3:02

Uppercase URIs

Make the URIs for all records use only uppercase letters so that it's 
consistent with UniProt's URI patterns.



Original issue reported on code.google.com by [email protected] on 20 Oct 2010 at 2:29

Error in RDF

The refinement category is not typed

see 
http://quebec.pdb.bio2rdf.org/describe/?url=http://bio2rdf.org/pdb:119D/refineme
nt&sid=14 for an example

Original issue reported on code.google.com by [email protected] on 1 Oct 2010 at 3:21

Unit Cell Type

There is no unit cell type

http://quebec.pdb.bio2rdf.org/describe/?url=http://bio2rdf.org/pdb:119D/crystal/
unitCell&sid=14

Original issue reported on code.google.com by [email protected] on 1 Oct 2010 at 3:26

Add Atom type

All atoms should have a generic "atom" type added to them on top of the i.e.: 
pdb:NitrogenAtom type.

Original issue reported on code.google.com by [email protected] on 15 Nov 2010 at 3:20

Mutiple slf4j bindings

SLF4J Exception ... mutiple slf4j bindings. See exception:


SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in 
[jar:file:/home/jose/pdb2rdf-cli-0.0.9/lib/pdb2rdf-cli-0.0.9-jar-with-dependenci
es.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in 
[jar:file:/home/jose/pdb2rdf-cli-0.0.9/lib/slf4j-log4j12-1.5.8.jar!/org/slf4j/im
pl/StaticLoggerBinder.class]
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.

Luego de borrar el slf4j-log4j12-1.5.8.jar de lib/ me encontre con este 
problemon::


java.lang.NullPointerException
        at com.dumontierlab.pdb2rdf.Pdb2Rdf$1.run(Pdb2Rdf.java:195)
        at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
        at java.lang.Thread.run(Thread.java:662)
ERROR [pool-1-thread-11] (Pdb2Rdf.java:213) - Unable to parse input for PDB: 
null
java.lang.NullPointerException
        at com.dumontierlab.pdb2rdf.Pdb2Rdf$1.run(Pdb2Rdf.java:195)
        at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
        at java.lang.Thread.run(Thread.java:662)
ERROR [pool-1-thread-2] (Pdb2Rdf.java:213) - Unable to parse input for PDB: null
java.lang.NullPointerException
        at com.dumontierlab.pdb2rdf.Pdb2Rdf$1.run(Pdb2Rdf.java:195)
        at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
        at java.lang.Thread.run(Thread.java:662)
ERROR [pool-1-thread-5] (Pdb2Rdf.java:213) - Unable to parse input for PDB: null
java.lang.NullPointerException
        at com.dumontierlab.pdb2rdf.Pdb2Rdf$1.run(Pdb2Rdf.java:195)
        at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
        at java.lang.Thread.run(Thread.java:662)
ERROR [pool-1-thread-11] (Pdb2Rdf.java:213) - Unable to parse input for PDB: 
null
java.lang.NullPointerException
        at com.dumontierlab.pdb2rdf.Pdb2Rdf$1.run(Pdb2Rdf.java:195)
        at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
        at java.lang.Thread.run(Thread.java:662)

Original issue reported on code.google.com by alexjdl on 9 Nov 2010 at 9:09

PDB2RDF spatial location types need to be changed

Currently the RDF produced utilizes pdb:CartesianCoordinateComponent as the 
type for the atom spatial locations X Y and Z parts. 
The types XCartesianComponent, YCartesianComponent and ZCartesianComponent 
must be added and associated with their respective atom spatial locations






Original issue reported on code.google.com by [email protected] on 31 May 2010 at 2:39

Change SPARQL produced by PDB2RDF-UI

The PDB2RDFui currently poses a query to the endpoint that has no types set 
in it.

Based on the following SELECT query produce the correct Construct query:
PREFIX dc: <http://purl.org/dc/terms/>
PREFIX pdb: <http://bio2rdf.org/pdb:>
SELECT* 
WHERE{
<http://bio2rdf.org/pdb:1Y26> dc:hasPart ?structure_deter.
?structure_deter pdb:hasProduct ?model.
?model a pdb:Model.
?model dc:hasPart ?atom_sl.
?atom a ?atomType.
?atom pdb:hasSpatialLocation ?atom_sl.
?atom_sl a pdb:AtomSpatialLocation.
?atom_sl pdb:hasXCoordinate ?xcoord.
?atom_sl pdb:hasYCoordinate ?ycoord.
?atom_sl pdb:hasZCoordinate ?zcoord.
?xcoord pdb:hasValue ?xval.
?ycoord pdb:hasValue ?yval.
?zcoord pdb:hasValue ?zval.
}LIMIT 1 

Original issue reported on code.google.com by [email protected] on 31 May 2010 at 2:57

Refinement is typed

needs to add Refinement class

Original issue reported on code.google.com by alexjdl on 15 Oct 2010 at 4:39

Change of predicate in current PDB2RDF

Currently there is a pdb:hasPart relation between the atom URI 
(http://bio2rdf.org/pdb:1AM0/atomSpatialLocation_13) and its corresponding 
atom spatial location URI (http://bio2rdf.org/pdb:1AM0/atom_A6_N9) 

Original issue reported on code.google.com by [email protected] on 31 May 2010 at 2:49

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.