├── CITATION.cff ├── GLORI-pipeline.jpg ├── LICENSE ├── README.md ├── get_anno ├── anno_to_base.py ├── anno_to_base_remove_redundance_v1.0.py ├── change_UCSCgtf.py ├── gtf2anno.py ├── gtf2genelist.py ├── selected_longest_transcrpts_fa.py └── test2.app ├── pipelines ├── Transcrip2genome.py ├── build_genome_index.py ├── build_transcriptome_index.py ├── concat_bam.py ├── get_referbase.py ├── m6A_caller.py ├── m6A_caller_FDRfilter.py ├── m6A_pileup_formatter.py ├── mapping_reads.py ├── pileup_genome_multiprocessing.py └── test.app └── run_GLORI.py /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucongcas/GLORI-tools/HEAD/CITATION.cff -------------------------------------------------------------------------------- /GLORI-pipeline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucongcas/GLORI-tools/HEAD/GLORI-pipeline.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucongcas/GLORI-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucongcas/GLORI-tools/HEAD/README.md -------------------------------------------------------------------------------- /get_anno/anno_to_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucongcas/GLORI-tools/HEAD/get_anno/anno_to_base.py -------------------------------------------------------------------------------- /get_anno/anno_to_base_remove_redundance_v1.0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucongcas/GLORI-tools/HEAD/get_anno/anno_to_base_remove_redundance_v1.0.py -------------------------------------------------------------------------------- /get_anno/change_UCSCgtf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucongcas/GLORI-tools/HEAD/get_anno/change_UCSCgtf.py -------------------------------------------------------------------------------- /get_anno/gtf2anno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucongcas/GLORI-tools/HEAD/get_anno/gtf2anno.py -------------------------------------------------------------------------------- /get_anno/gtf2genelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucongcas/GLORI-tools/HEAD/get_anno/gtf2genelist.py -------------------------------------------------------------------------------- /get_anno/selected_longest_transcrpts_fa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucongcas/GLORI-tools/HEAD/get_anno/selected_longest_transcrpts_fa.py -------------------------------------------------------------------------------- /get_anno/test2.app: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pipelines/Transcrip2genome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucongcas/GLORI-tools/HEAD/pipelines/Transcrip2genome.py -------------------------------------------------------------------------------- /pipelines/build_genome_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucongcas/GLORI-tools/HEAD/pipelines/build_genome_index.py -------------------------------------------------------------------------------- /pipelines/build_transcriptome_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucongcas/GLORI-tools/HEAD/pipelines/build_transcriptome_index.py -------------------------------------------------------------------------------- /pipelines/concat_bam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucongcas/GLORI-tools/HEAD/pipelines/concat_bam.py -------------------------------------------------------------------------------- /pipelines/get_referbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucongcas/GLORI-tools/HEAD/pipelines/get_referbase.py -------------------------------------------------------------------------------- /pipelines/m6A_caller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucongcas/GLORI-tools/HEAD/pipelines/m6A_caller.py -------------------------------------------------------------------------------- /pipelines/m6A_caller_FDRfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucongcas/GLORI-tools/HEAD/pipelines/m6A_caller_FDRfilter.py -------------------------------------------------------------------------------- /pipelines/m6A_pileup_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucongcas/GLORI-tools/HEAD/pipelines/m6A_pileup_formatter.py -------------------------------------------------------------------------------- /pipelines/mapping_reads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucongcas/GLORI-tools/HEAD/pipelines/mapping_reads.py -------------------------------------------------------------------------------- /pipelines/pileup_genome_multiprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucongcas/GLORI-tools/HEAD/pipelines/pileup_genome_multiprocessing.py -------------------------------------------------------------------------------- /pipelines/test.app: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /run_GLORI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liucongcas/GLORI-tools/HEAD/run_GLORI.py --------------------------------------------------------------------------------