├── .gitignore ├── LICENSE ├── README.md └── scripts ├── bp_bulk_load_gff.pl ├── extract_intron_gff3_from_gff3.py ├── extract_seq_from_gff3.pl └── make_intron_feature.pl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irusri/Extract-intron-from-gff3/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irusri/Extract-intron-from-gff3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irusri/Extract-intron-from-gff3/HEAD/README.md -------------------------------------------------------------------------------- /scripts/bp_bulk_load_gff.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irusri/Extract-intron-from-gff3/HEAD/scripts/bp_bulk_load_gff.pl -------------------------------------------------------------------------------- /scripts/extract_intron_gff3_from_gff3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irusri/Extract-intron-from-gff3/HEAD/scripts/extract_intron_gff3_from_gff3.py -------------------------------------------------------------------------------- /scripts/extract_seq_from_gff3.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irusri/Extract-intron-from-gff3/HEAD/scripts/extract_seq_from_gff3.pl -------------------------------------------------------------------------------- /scripts/make_intron_feature.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irusri/Extract-intron-from-gff3/HEAD/scripts/make_intron_feature.pl --------------------------------------------------------------------------------