A program for analyzing proximity ligation experiments from mapped files in the Fastq or SAM format to 1) generate a list of chimeric interactions with their coordinates, sequence, and folding energy, 2) plot contact density map of selected genes, 3) generate intra-/intermolecular RNA structure of any selected regions
It's common for command line tools to have a help message showing what arguments the executable takes, e.g. by running with no arguments or running with --help or -h. At the moment there's no option for this - if I run bin/hyb2 with no options, the executable hangs indefinitely. It would be nice to have a default help message that shows if:
no arguments are specified
incorrect arguments are specified
some kind of --help option is used - although I'm not sure if Bash getopts can do this
It's common for command line tools to have a help message showing what arguments the executable takes, e.g. by running with no arguments or running with
--help
or-h
. At the moment there's no option for this - if I runbin/hyb2
with no options, the executable hangs indefinitely. It would be nice to have a default help message that shows if:--help
option is used - although I'm not sure if Bashgetopts
can do this