Apply formatting
[proteocache.git] / datadb / compbio / cassandra / CassandraReaderOld.java
index 852beb0..c7176b0 100644 (file)
@@ -221,7 +221,7 @@ public class CassandraReaderOld {
                for (Row r : rows) {
                        String prot = r.getString("Protein");
                        String prediction = findJnetpred(r.getMap("Predictions", String.class, String.class));
-                       if (prot != null || prediction != null) 
+                       if (prot != null || prediction != null)
                                res.put(prot, prediction);
                }
                final long endTime = System.currentTimeMillis();
@@ -229,13 +229,14 @@ public class CassandraReaderOld {
                return res;
        }
 
-       private String findJnetpred (Map<String,String> pred) {
+       private String findJnetpred(Map<String, String> pred) {
                if (pred != null) {
-                       if (pred.containsKey("jnetpred")) 
+                       if (pred.containsKey("jnetpred"))
                                return pred.get("jnetpred");
                }
                return null;
        }
+
        /*
         * getting protein sequences by counter
         */