├── LICENSE ├── README.md ├── config ├── angle_offset.conf ├── bands.conf ├── chromosome.conf ├── chromosome_order.conf ├── circos.conf ├── data_tracks.conf ├── ideogram.conf ├── ideogram_label.conf ├── image.conf ├── karyotype.conf ├── main.conf ├── static │ ├── colors_fonts_patterns.conf │ ├── housekeeping.conf │ ├── luminance_corrected_color.conf │ ├── static.conf │ └── ucsc_color.conf └── ticks.conf ├── data_tracks └── .gitignore ├── docker ├── Dockerfile └── circos-0.69-6-kanai.tgz ├── fujiplot.R ├── input_example ├── input.txt └── traitlist.txt ├── karyotypes ├── karyotype.human.hg19.txt └── karyotype.human.hg38.txt ├── output └── .gitkeep └── output_example ├── barplot.pdf ├── circos.png └── circos.svg /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkanai/fujiplot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkanai/fujiplot/HEAD/README.md -------------------------------------------------------------------------------- /config/angle_offset.conf: -------------------------------------------------------------------------------- 1 | angle_offset* = -90 2 | -------------------------------------------------------------------------------- /config/bands.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkanai/fujiplot/HEAD/config/bands.conf -------------------------------------------------------------------------------- /config/chromosome.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkanai/fujiplot/HEAD/config/chromosome.conf -------------------------------------------------------------------------------- /config/chromosome_order.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/circos.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkanai/fujiplot/HEAD/config/circos.conf -------------------------------------------------------------------------------- /config/data_tracks.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkanai/fujiplot/HEAD/config/data_tracks.conf -------------------------------------------------------------------------------- /config/ideogram.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkanai/fujiplot/HEAD/config/ideogram.conf -------------------------------------------------------------------------------- /config/ideogram_label.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkanai/fujiplot/HEAD/config/ideogram_label.conf -------------------------------------------------------------------------------- /config/image.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkanai/fujiplot/HEAD/config/image.conf -------------------------------------------------------------------------------- /config/karyotype.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkanai/fujiplot/HEAD/config/karyotype.conf -------------------------------------------------------------------------------- /config/main.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkanai/fujiplot/HEAD/config/main.conf -------------------------------------------------------------------------------- /config/static/colors_fonts_patterns.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkanai/fujiplot/HEAD/config/static/colors_fonts_patterns.conf -------------------------------------------------------------------------------- /config/static/housekeeping.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkanai/fujiplot/HEAD/config/static/housekeeping.conf -------------------------------------------------------------------------------- /config/static/luminance_corrected_color.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkanai/fujiplot/HEAD/config/static/luminance_corrected_color.conf -------------------------------------------------------------------------------- /config/static/static.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkanai/fujiplot/HEAD/config/static/static.conf -------------------------------------------------------------------------------- /config/static/ucsc_color.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkanai/fujiplot/HEAD/config/static/ucsc_color.conf -------------------------------------------------------------------------------- /config/ticks.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkanai/fujiplot/HEAD/config/ticks.conf -------------------------------------------------------------------------------- /data_tracks/.gitignore: -------------------------------------------------------------------------------- 1 | *.txt 2 | -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkanai/fujiplot/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/circos-0.69-6-kanai.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkanai/fujiplot/HEAD/docker/circos-0.69-6-kanai.tgz -------------------------------------------------------------------------------- /fujiplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkanai/fujiplot/HEAD/fujiplot.R -------------------------------------------------------------------------------- /input_example/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkanai/fujiplot/HEAD/input_example/input.txt -------------------------------------------------------------------------------- /input_example/traitlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkanai/fujiplot/HEAD/input_example/traitlist.txt -------------------------------------------------------------------------------- /karyotypes/karyotype.human.hg19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkanai/fujiplot/HEAD/karyotypes/karyotype.human.hg19.txt -------------------------------------------------------------------------------- /karyotypes/karyotype.human.hg38.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkanai/fujiplot/HEAD/karyotypes/karyotype.human.hg38.txt -------------------------------------------------------------------------------- /output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output_example/barplot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkanai/fujiplot/HEAD/output_example/barplot.pdf -------------------------------------------------------------------------------- /output_example/circos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkanai/fujiplot/HEAD/output_example/circos.png -------------------------------------------------------------------------------- /output_example/circos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkanai/fujiplot/HEAD/output_example/circos.svg --------------------------------------------------------------------------------