├── .gitignore ├── LICENSE ├── README.md ├── Supplementary_Information.pdf ├── UTRannotator.pm ├── _config.yml ├── src ├── five_prime_UTR_utils.pl ├── uAUG_gained.pl ├── uAUG_lost.pl ├── uSTOP_gained.pl ├── uSTOP_lost.pl └── uframeshift.pl ├── test ├── customised.txt ├── run_vep.sh ├── test_grch37.vcf ├── test_grch38.vcf ├── test_mus.output ├── test_mus.output_summary.html ├── test_mus.vcf ├── test_output_grch37.txt ├── test_output_grch37.txt_summary.html ├── test_output_grch38.txt └── test_output_grch38.txt_summary.html ├── uORF_5UTR_GRCh37_PUBLIC.txt └── uORF_5UTR_GRCh38_PUBLIC.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCardioGenetics/UTRannotator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCardioGenetics/UTRannotator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCardioGenetics/UTRannotator/HEAD/README.md -------------------------------------------------------------------------------- /Supplementary_Information.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCardioGenetics/UTRannotator/HEAD/Supplementary_Information.pdf -------------------------------------------------------------------------------- /UTRannotator.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCardioGenetics/UTRannotator/HEAD/UTRannotator.pm -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCardioGenetics/UTRannotator/HEAD/_config.yml -------------------------------------------------------------------------------- /src/five_prime_UTR_utils.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCardioGenetics/UTRannotator/HEAD/src/five_prime_UTR_utils.pl -------------------------------------------------------------------------------- /src/uAUG_gained.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCardioGenetics/UTRannotator/HEAD/src/uAUG_gained.pl -------------------------------------------------------------------------------- /src/uAUG_lost.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCardioGenetics/UTRannotator/HEAD/src/uAUG_lost.pl -------------------------------------------------------------------------------- /src/uSTOP_gained.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCardioGenetics/UTRannotator/HEAD/src/uSTOP_gained.pl -------------------------------------------------------------------------------- /src/uSTOP_lost.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCardioGenetics/UTRannotator/HEAD/src/uSTOP_lost.pl -------------------------------------------------------------------------------- /src/uframeshift.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCardioGenetics/UTRannotator/HEAD/src/uframeshift.pl -------------------------------------------------------------------------------- /test/customised.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCardioGenetics/UTRannotator/HEAD/test/customised.txt -------------------------------------------------------------------------------- /test/run_vep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCardioGenetics/UTRannotator/HEAD/test/run_vep.sh -------------------------------------------------------------------------------- /test/test_grch37.vcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCardioGenetics/UTRannotator/HEAD/test/test_grch37.vcf -------------------------------------------------------------------------------- /test/test_grch38.vcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCardioGenetics/UTRannotator/HEAD/test/test_grch38.vcf -------------------------------------------------------------------------------- /test/test_mus.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCardioGenetics/UTRannotator/HEAD/test/test_mus.output -------------------------------------------------------------------------------- /test/test_mus.output_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCardioGenetics/UTRannotator/HEAD/test/test_mus.output_summary.html -------------------------------------------------------------------------------- /test/test_mus.vcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCardioGenetics/UTRannotator/HEAD/test/test_mus.vcf -------------------------------------------------------------------------------- /test/test_output_grch37.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCardioGenetics/UTRannotator/HEAD/test/test_output_grch37.txt -------------------------------------------------------------------------------- /test/test_output_grch37.txt_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCardioGenetics/UTRannotator/HEAD/test/test_output_grch37.txt_summary.html -------------------------------------------------------------------------------- /test/test_output_grch38.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCardioGenetics/UTRannotator/HEAD/test/test_output_grch38.txt -------------------------------------------------------------------------------- /test/test_output_grch38.txt_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCardioGenetics/UTRannotator/HEAD/test/test_output_grch38.txt_summary.html -------------------------------------------------------------------------------- /uORF_5UTR_GRCh37_PUBLIC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCardioGenetics/UTRannotator/HEAD/uORF_5UTR_GRCh37_PUBLIC.txt -------------------------------------------------------------------------------- /uORF_5UTR_GRCh38_PUBLIC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCardioGenetics/UTRannotator/HEAD/uORF_5UTR_GRCh38_PUBLIC.txt --------------------------------------------------------------------------------