[Neo4j] Enable port 7474 for embedded applications?

2016-09-27 Thread Joseph Guhlin
I have a comparative genomics database project I'm planning to release, and would like to enable port 7474 so that RNeo4j library (and others) can connect directly to it, without having to also download the correct neo4j version. I can't find it in the API but may have not seen it. I realize

[Neo4j] Re: Data Insertion into Neo4j

2016-06-20 Thread Joseph Guhlin
I've had lots of luck using the BatchInserters. More info at their API Doc's. http://neo4j.com/docs/2.3.5/javadocs/ On Monday, June 20, 2016 at 3:10:49 AM UTC-5, yayat...@innoplexus.com wrote: > > Hi, > I am trying to read records from MongoDB and insert into Neo4j. Now i have > 2.6 million

Re: [Neo4j] import owl file with ontology to Neo4j (Cypher query)

2016-03-19 Thread Joseph Guhlin
I don't think there is a cypher query way of doing it (but haven't seen all of what Cypher can do recently) but I have an database application that can import many types of OBO files, which are similar to OWL, for genomic comparisons. Is the database you want imported also available in OBO

Re: [Neo4j] Problems with structure after multiple BatchInserter runs and supernodes

2014-10-28 Thread Joseph Guhlin
. Is there any way to regenerate the Relationship Store or Relationship Group Store? I'll see if I can make this a test case and report it as a bug, unless anyone has any other ideas. --Joseph On Tuesday, October 21, 2014 1:35:05 PM UTC-5, Joseph Guhlin wrote: I did have that as an issue

[Neo4j] Problems with structure after multiple BatchInserter runs and supernodes

2014-10-21 Thread Joseph Guhlin
JDK: 1.8 Neo4j: 2.1.5 - Embedded and then stand-alone to test the data I'm using a program to insert a large amount of data to Neo4j. Because of memory limitations and sped limitations I usually have to do this in a few batches using BatchInserter (separate commands, long after the database

Re: [Neo4j] Problems with structure after multiple BatchInserter runs and supernodes

2014-10-21 Thread Joseph Guhlin
write to the index only in one of the runs? I thought there was an issue once where, when you didn't write to an index in one run it removed the index-definition? Could you check that? Michael On Tue, Oct 21, 2014 at 10:25 AM, Joseph Guhlin joseph...@gmail.com javascript: wrote: JDK