Skip to content

Commit

Permalink
Working version for ASMS2015
Browse files Browse the repository at this point in the history
  • Loading branch information
jj-umn committed May 29, 2015
1 parent 8516d7b commit 8274802
Show file tree
Hide file tree
Showing 8 changed files with 431 additions and 73 deletions.
6 changes: 3 additions & 3 deletions nbactions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
</goals>
<properties>
<exec.args>-Xms4g -classpath %classpath edu.umn.msi.gx.mztosqlite.MzToSQLite -s /Users/jj/Downloads/iTRAQ_Erwinia.sqlite /Users/jj/gx/toolsheds/msi/mzid_sqlite/iTRAQ_Erwinia.mzid /Users/jj/gx/toolsheds/msi/mzid_sqlite/iTRAQ_Erwinia.mzML</exec.args>
<exec.args>-Xms4g -classpath %classpath edu.umn.msi.gx.mztosqlite.MzToSQLite -s /Users/jj/Downloads/GCC2015.sqlite /Users/jj/gxt/gxt/database/files/006/dataset_6617.dat /Users/jj/gxt/gxt/database/files/006/dataset_6616.dat /Users/jj/gxt/gxt/database/files/006/dataset_6620.dat /Users/jj/gxt/gxt/database/files/006/dataset_6618.dat</exec.args>
<exec.executable>java</exec.executable>
</properties>
</action>
Expand All @@ -24,7 +24,7 @@
<goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
</goals>
<properties>
<exec.args>-Xdebug -Xrunjdwp:transport=dt_socket,server=n,address=${jpda.address} -Xms4g -classpath %classpath edu.umn.msi.gx.mztosqlite.MzToSQLite -s /Users/jj/Downloads/iTRAQ_Erwinia.sqlite /Users/jj/gx/toolsheds/msi/mzid_sqlite/iTRAQ_Erwinia.mzid /Users/jj/gx/toolsheds/msi/mzid_sqlite/iTRAQ_Erwinia.mzML</exec.args>
<exec.args>-Xdebug -Xrunjdwp:transport=dt_socket,server=n,address=${jpda.address} -Xms4g -classpath %classpath edu.umn.msi.gx.mztosqlite.MzToSQLite -s /Users/jj/Downloads/GCC2015.sqlite /Users/jj/gxt/gxt/database/files/006/dataset_6617.dat /Users/jj/gxt/gxt/database/files/006/dataset_6616.dat /Users/jj/gxt/gxt/database/files/006/dataset_6620.dat /Users/jj/gxt/gxt/database/files/006/dataset_6618.dat</exec.args>
<exec.executable>java</exec.executable>
<jpda.listen>true</jpda.listen>
</properties>
Expand All @@ -39,7 +39,7 @@
<goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
</goals>
<properties>
<exec.args>-Xms4g -classpath %classpath edu.umn.msi.gx.mztosqlite.MzToSQLite -s /Users/jj/Downloads/iTRAQ_Erwinia.sqlite /Users/jj/gx/toolsheds/msi/mzid_sqlite/iTRAQ_Erwinia.mzid /Users/jj/gx/toolsheds/msi/mzid_sqlite/iTRAQ_Erwinia.mzML</exec.args>
<exec.args>-Xms4g -classpath %classpath edu.umn.msi.gx.mztosqlite.MzToSQLite -s /Users/jj/Downloads/GCC2015.sqlite /Users/jj/gxt/gxt/database/files/006/dataset_6617.dat /Users/jj/gxt/gxt/database/files/006/dataset_6616.dat /Users/jj/gxt/gxt/database/files/006/dataset_6620.dat /Users/jj/gxt/gxt/database/files/006/dataset_6618.dat</exec.args>
<exec.executable>java</exec.executable>
</properties>
</action>
Expand Down
51 changes: 50 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,61 @@
<groupId>uk.ac.ebi.pride.tools</groupId>
<artifactId>pride-wrapper</artifactId>
<version>1.2.0</version>
</dependency>
</dependency>
<dependency>
<groupId>com.github.samtools</groupId>
<artifactId>htsjdk</artifactId>
<version>1.130</version>
</dependency>
<dependency>
<groupId>org.tmatesoft.sqljet</groupId>
<artifactId>sqljet</artifactId>
<version>1.1.10</version>
</dependency>
<dependency>
<groupId>com.compomics</groupId>
<artifactId>utilities</artifactId>
<version>3.47.2</version>
<exclusions>
<exclusion>
<artifactId>commons-math</artifactId>
<groupId>commons-math</groupId>
</exclusion>
<exclusion>
<artifactId>servlet-api</artifactId>
<groupId>javax.servlet</groupId>
</exclusion>
<exclusion>
<artifactId>swingx</artifactId>
<groupId>org.swinglabs</groupId>
</exclusion>
<exclusion>
<artifactId>swing-layout</artifactId>
<groupId>org.swinglabs</groupId>
</exclusion>
<exclusion>
<artifactId>batik-all</artifactId>
<groupId>batik</groupId>
</exclusion>
<exclusion>
<artifactId>pdf-transcoder</artifactId>
<groupId>batik</groupId>
</exclusion>
<exclusion>
<artifactId>jfreechart</artifactId>
<groupId>jfree</groupId>
</exclusion>
<exclusion>
<artifactId>xercesImpl</artifactId>
<groupId>xerces</groupId>
</exclusion>
<exclusion>
<artifactId>ssj</artifactId>
<groupId>umontreal.iro.lecuyer.gof</groupId>
</exclusion>
</exclusions>
</dependency>

</dependencies>
<build>
<plugins>
Expand Down
Loading

0 comments on commit 8274802

Please sign in to comment.