This file contains hidden or 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
#!/usr/bin/env python | |
import pyBigWig | |
import argparse | |
import os.path | |
import sys | |
parser = argparse.ArgumentParser(description="Subset a single chromosome from a bigWig file.") | |
parser.add_argument("--headerToo", action="store_true", help="Subset the header too, which can expedite some downstream programs but possibly cause problems for others.") | |
parser.add_argument("input", help="Input bigWig file.") | |
parser.add_argument("output", help="Output bigWig file.") |
This file contains hidden or 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
# load required libraries | |
library(shiny) | |
library(plyr) | |
library(ggplot2) | |
library(googleVis) | |
library(reshape2) | |
####creation of example data on local directory for uploading#### |
This file contains hidden or 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
#!/usr/bin/perl -w | |
my $columns = 60; | |
my $progname = $0; | |
$progname =~ s/^.*?([^\/]+)$/$1/; | |
my $usage = "Usage: $progname [<Stockholm file(s)>]\n"; | |
$usage .= " [-h] print this help message\n"; |