Skip to content

Commit 9940d1c

Browse files
committed
version 2.2.0
# Conflicts: # pom.xml # src/main/java/fr/proline/zero/Main.java # src/main/java/fr/proline/zero/util/Memory.java # src/main/resources/proline_launcher.config
2 parents 95131b3 + f739c8d commit 9940d1c

41 files changed

Lines changed: 4866 additions & 1005 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
/target/
2-
/proline-zero.iml
32
/.idea/
3+
/proline-zero.iml

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@ The default behavior of Proline is to load data from predefined directories. The
4343

4444
### Configuration
4545

46-
The configuration file contains settings for the launcher. These settings should not be changed unless you are an advanced user.
46+
A configuration dialog is displayed at start up. It allow user to modify main settings. The associated configuration file contains all settings for the launcher. These settings should not be changed unless you are an advanced user.
4747

4848
* datastore: the type of database you want to use. Only PostgreSQL is available at the moment.
49-
* server_max_memory: the amount of memory you want to allow to the whole Proline process (default is 4GB).
49+
* memory settings, including allocation mode (automatic, semi Automatic, manual) and amount of memory allocated to each module.
5050
* server_default_timeout: the time in second you give for each sub-process to start. If the process does not start after this number of seconds, the launcher will quit in error.
51-
* debug_mode: the debug mode provides more information and disables the memory check.
52-
* disable_sequence_repository: if you are a bit low on memory and if you do not need protein sequences, you may want to disable it to gain some memory.
53-
* postgresql_port: the port used by PostgreSQL. Warning: you should not change it if the datastore have already been initialized (at first launch).
51+
* log_debug: the debug mode provides more information and disables the memory check.
52+
* sequence_repository_active: if you are a bit low on memory and if you do not need protein sequences, you may want to disable it to gain some memory.
53+
* datastore_port: the port used by PostgreSQL. Warning: you should not change it if the datastore have already been initialized (at first launch).
5454
* java_home: you can define your own JRE, but by default we use the one package with Proline Studio. Proline has been tested with Java8.
5555
* cortex_version: the version number of Proline Cortex
5656
* hornetq_version: the version number of HornetQ

data/sample/data/.prolinestudio/config/Preferences.properties renamed to data/sample/data/.prolinestudio/Preferences.properties

File renamed without changes.

pom.xml

Lines changed: 19 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,31 +3,41 @@
33
<modelVersion>4.0.0</modelVersion>
44

55
<artifactId>proline-zero</artifactId>
6-
<version>2.1.2</version>
6+
<version>2.2.0</version>
77
<name>Proline-Zero</name>
88

99
<parent>
1010
<groupId>fr.proline</groupId>
1111
<artifactId>profi-pom</artifactId>
12-
<version>1.0.0</version> <!-- Snapshot Trunk version -->
12+
<version>1.1.0</version> <!-- Snapshot Trunk version -->
1313
</parent>
1414

1515
<properties>
1616
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17-
<cortex.version>2.1.2</cortex.version>
18-
<studio.version>2.1.2</studio.version>
17+
<cortex.version>2.2.0</cortex.version>
18+
<studio.version>2.2.0</studio.version>
1919
<hornetq.version>2.4.0.Final</hornetq.version>
20-
<admin.version>2.1.2</admin.version>
21-
<seqrepo.version>2.1.2</seqrepo.version>
20+
<admin.version>2.2.0</admin.version>
21+
<seqrepo.version>2.2.0</seqrepo.version>
2222
<dist.data>${project.basedir}/data/sample</dist.data>
2323
<!--<pg.win.version>9.4.11-2</pg.win.version>-->
2424
<pg.win.version>9.6.11-1</pg.win.version>
2525
<pg.linux.version>10.11-3</pg.linux.version>
2626
<h2.version>1.4.196</h2.version>
27-
<raw2mzdb.version>0.9.10</raw2mzdb.version>
27+
2828
</properties>
2929

3030
<dependencies>
31+
<dependency>
32+
<groupId>commons-beanutils</groupId>
33+
<artifactId>commons-beanutils</artifactId>
34+
<version>1.9.4</version>
35+
</dependency>
36+
<dependency>
37+
<groupId>org.apache.commons</groupId>
38+
<artifactId>commons-configuration2</artifactId>
39+
<version>2.7</version>
40+
</dependency>
3141
<dependency>
3242
<groupId>org.zeroturnaround</groupId>
3343
<artifactId>zt-exec</artifactId>
@@ -53,7 +63,7 @@
5363
<dependency>
5464
<groupId>fr.profi.util</groupId>
5565
<artifactId>profi-commons-java</artifactId>
56-
<version>1.0.0</version>
66+
<version>1.1.0</version>
5767
</dependency>
5868

5969
<dependency>
@@ -67,12 +77,6 @@
6777
<artifactId>jna</artifactId>
6878
<version>4.3.0</version>
6979
</dependency>
70-
<dependency>
71-
<groupId>org.netbeans.api</groupId>
72-
<artifactId>org-netbeans-modules-db</artifactId>
73-
<version>RELEASE801</version>
74-
<type>jar</type>
75-
</dependency>
7680
</dependencies>
7781

7882
<build>
@@ -345,7 +349,7 @@
345349
<dependency>
346350
<groupId>fr.profi</groupId>
347351
<artifactId>raw2mzdb</artifactId>
348-
<version>0.9.10</version>
352+
<version>1.1.0</version>
349353
<classifier>windows-x64</classifier>
350354
<type>zip</type>
351355
</dependency>

0 commit comments

Comments
 (0)