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

Method touch

src/rnabloom/util/FileUtils.java:72–77  ·  view source on GitHub ↗
(File f)

Source from the content-addressed store, hash-verified

70 }
71
72 public static void touch(File f) throws IOException {
73 f.getParentFile().mkdirs();
74 if (!f.createNewFile()){
75 f.setLastModified(System.currentTimeMillis());
76 }
77 }
78
79 public static void symlinkRemoveExisting(String target, String link) throws IOException {
80 Path targetPath = Paths.get(target);

Callers 7

assembleFragmentsMethod · 0.80
assembleTranscriptsNRMethod · 0.80
assembleTranscriptsSEMethod · 0.80
assembleTranscriptsPEMethod · 0.80
mainMethod · 0.80
avaClusteredOLCMethod · 0.80
mapClusteredOLCMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected