This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Create a directory, put this make file in it | |
# and for now type `make bam` or `make vcf`. | |
# | |
# You also might have to change the `ADAM` variable below | |
TARGETS=bam vcf | |
.PHONY: all $(TARGETS) | |
all: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let lwt_monitor_info = | |
let open Lwt in | |
let started = ref false in | |
let previous = ref (None : float option) in | |
let reads = ref [] in | |
fun () -> | |
begin match !started with | |
| false -> | |
Lwt.ignore_result begin |
NewerOlder