Merge branch 'JABAWS_Release_2_5' into develop
[jabaws.git] / runner / compbio / runner / disorder / Jronn.java
index 8e1eb25..d9d388f 100644 (file)
@@ -1,6 +1,6 @@
-/* Copyright (c) 2009 Peter Troshin\r
+/* Copyright (c) 2011 Peter Troshin\r
  *  \r
- *  JAva Bioinformatics Analysis Web Services (JABAWS) @version: 1.0     \r
+ *  JAva Bioinformatics Analysis Web Services (JABAWS) @version: 2.0     \r
  * \r
  *  This library is free software; you can redistribute it and/or modify it under the terms of the\r
  *  Apache License version 2 as published by the Apache Software Foundation\r
@@ -49,10 +49,10 @@ public class Jronn extends SkeletalExecutable<Jronn> {
 \r
        private static Logger log = Logger.getLogger(Jronn.class);\r
 \r
-       /**\r
-        * Number of cores to use, defaults to 1 for local execution or the value of\r
-        * "jronn.cluster.cpunum" property for cluster execution\r
-        */\r
+/*\r
+ * Number of cores to use, defaults to 1 for local execution or the value of\r
+ * "jronn.cluster.cpunum" property for cluster execution\r
+ */\r
        private int ncoreNumber = 0;\r
 \r
        private final String ncorePrm = "-n=";\r
@@ -61,8 +61,7 @@ public class Jronn extends SkeletalExecutable<Jronn> {
        public static final String STAT_FILE = "stat.txt";\r
 \r
        public Jronn() {\r
-               addParameters(Arrays.asList("-jar", getLibPath(), "-s=" + STAT_FILE,\r
-                               "-f=H"));\r
+               addParameters(Arrays.asList("-jar", getLibPath(), "-s=" + STAT_FILE, "-f=H"));\r
        }\r
 \r
        @SuppressWarnings("unchecked")\r
@@ -71,10 +70,8 @@ public class Jronn extends SkeletalExecutable<Jronn> {
                        throws ResultNotAvailableException {\r
                ScoreManager sequences = null;\r
                try {\r
-                       InputStream inStream = new FileInputStream(new File(workDirectory,\r
-                                       getOutput()));\r
-                       sequences = ScoreManager.newInstanceSingleScore(SequenceUtil\r
-                                       .readJRonn(inStream));\r
+                       InputStream inStream = new FileInputStream(new File(workDirectory, getOutput()));\r
+                       sequences = ScoreManager.newInstanceSingleScore(SequenceUtil.readJRonn(inStream));\r
                        inStream.close();\r
                } catch (FileNotFoundException e) {\r
                        log.error(e.getMessage(), e.getCause());\r
@@ -93,7 +90,6 @@ public class Jronn extends SkeletalExecutable<Jronn> {
        }\r
 \r
        private static String getLibPath() {\r
-\r
                String settings = ph.getProperty("jronn.jar.file");\r
                if (compbio.util.Util.isEmpty(settings)) {\r
                        throw new NullPointerException(\r
@@ -152,8 +148,7 @@ public class Jronn extends SkeletalExecutable<Jronn> {
 \r
        @Override\r
        public CommandBuilder<Jronn> getParameters(ExecProvider provider) {\r
-               // If number of cores is provided, set it for the cluster execution\r
-               // only!\r
+               // If number of cores is provided, set it for the cluster execution only!\r
                if (provider == Executable.ExecProvider.Cluster) {\r
                        int cpunum = SkeletalExecutable.getClusterCpuNum(getType());\r
                        cpunum = (cpunum == 0) ? 1 : cpunum;\r