MCPcopy Create free account
hub / github.com/BirolLab/RNA-Bloom / loadStringFromFile

Method loadStringFromFile

src/rnabloom/util/FileUtils.java:98–102  ·  view source on GitHub ↗
(String path)

Source from the content-addressed store, hash-verified

96 }
97
98 public static String loadStringFromFile(String path) throws FileNotFoundException, IOException {
99 BufferedReader br = getTextFileReader(path);
100 String line = br.readLine().strip();
101 return line;
102 }
103
104 public static void writeIntArrayToFile(String path, int[] arr) throws IOException {
105 Writer fr = getTextFileWriter(path, false);

Callers

nothing calls this directly

Calls 1

getTextFileReaderMethod · 0.95

Tested by

no test coverage detected