I hereby claim:
- I am joemphilips on github.
- I am joemphilips (https://keybase.io/joemphilips) on keybase.
- I have a public key ASD4bsHuGge2dTtDAGotskz0hiF6jPEcIFiObEoHXap_sQo
To claim this, I am signing this object:
| module CustomAether | |
| type Lens<'a, 'b> = | |
| ('a -> 'b) * ('b -> 'a -> 'a) | |
| type Prism<'a, 'b> = | |
| ('a -> 'b option) * ('b -> 'a -> 'a) | |
| /// --- Morphisms --- |
I hereby claim:
To claim this, I am signing this object:
| #!usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import argparse | |
| parser = argparse.ArgumentParser(description="""print vcf entry from secific positions""") | |
| parser.add_argument("--version", action='version', version='1.0') | |
| parser.add_argument('v', help='input vcf file') | |
| parser.add_argument('p', help="""position you want to extract | |
| no X or Y or MT chromosomes | |
| Examples: | |
| >>> "12:234534-0879854" |
| use strict; | |
| use warnings; | |
| use autodie; | |
| use Path::Class; | |
| use Array::Utils qw(unique); | |
| =head1 SYNOPSIS | |
| discard_erroneous_gtf.pl --gtf <gtffile> |