introns
Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)
- id
- INTEGER (primary key), globally unique identifier for each intron
- dinucleotide_pair
- TEXT, terminal dinucleotide sequences of the intron
- is_minor
- INTEGER, indicates if the intron is a minor intron (1) or not (0)
- score
- REAL, score representing the probability (0-100%) of the intron being minor
- length
- INTEGER, length of the intron in base pairs
- transcript_id
- INTEGER (foreign key referencing transcripts(id)), parent transcript
- ordinal_index
- INTEGER, ordinal position of the intron within the transcript (e.g., 3 for the third intron)
- start
- INTEGER, start position of the intron in the genome
- end
- INTEGER, end position of the intron in the genome
- taxonomy_id
- INTEGER (foreign key referencing genomes(taxonomy_id)), NCBI taxonomy identifier for species
- scored_motifs
- TEXT, motifs scored for the intron
- phase
- INTEGER, phase of the intron in coding sequence (0, 1, or 2 or null for introns outside of coding sequence)
- in_cds
- INTEGER, indicates if the intron is within the coding sequence (1) or not (0; e.g., UTR introns)
- relative_position
- REAL, relative position of the intron within the transcript (as a percentage of coding length)
9 rows where transcript_id = 8322031
This data as json, CSV (advanced)
Suggested facets: score, phase
id ▼ | dinucleotide_pair | is_minor | score | length | transcript_id | ordinal_index | start | end | taxonomy_id | scored_motifs | phase | in_cds | relative_position |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
44701776 | GT-AG | 0 | 1.000000099473604e-05 | 77 | rna-XM_006830874.1 8322031 | 1 | 52719292 | 52719368 | Chrysochloris asiatica 185453 | CAG|GTGAGGGGCT...CCTCTCTCGCTC/TACCTGCTCAGA...CGCAG|ACG | 1 | 1 | 7.019 |
44701777 | GT-AG | 0 | 1.000000099473604e-05 | 65 | rna-XM_006830874.1 8322031 | 2 | 52718972 | 52719036 | Chrysochloris asiatica 185453 | CAG|GTGAGAGGTG...ACTGCTTGGGCG/GTCCAGCTGACT...TGCAG|AGT | 1 | 1 | 16.014 |
44701778 | GT-AG | 0 | 1.000000099473604e-05 | 88 | rna-XM_006830874.1 8322031 | 3 | 52718647 | 52718734 | Chrysochloris asiatica 185453 | AGG|GTGAGTGTGG...TCAGCTCTAATC/TCAGCTCTAATC...TCCAG|TGG | 1 | 1 | 24.374 |
44701779 | GT-AG | 0 | 1.000000099473604e-05 | 109 | rna-XM_006830874.1 8322031 | 4 | 52717990 | 52718098 | Chrysochloris asiatica 185453 | CGG|GTGCGTGACC...TGACCCTCATCC/TGTGCTCTGATC...GGCAG|ATC | 0 | 1 | 43.704 |
44701780 | GT-AG | 0 | 1.8427620539092203e-05 | 90 | rna-XM_006830874.1 8322031 | 5 | 52717678 | 52717767 | Chrysochloris asiatica 185453 | GAG|GTACAGGTGG...TGGACCTTGACC/TGGACCTTGACC...TGCAG|GTG | 0 | 1 | 51.534 |
44701781 | GT-AG | 0 | 1.000000099473604e-05 | 191 | rna-XM_006830874.1 8322031 | 6 | 52717405 | 52717595 | Chrysochloris asiatica 185453 | TGG|GTGAGACTCC...CCCACCTTGACC/CCCACCTTGACC...CCCAG|AGG | 1 | 1 | 54.427 |
44701782 | GT-AG | 0 | 1.000000099473604e-05 | 87 | rna-XM_006830874.1 8322031 | 7 | 52716685 | 52716771 | Chrysochloris asiatica 185453 | CCC|GTGAGTGGAC...CGGTTCTCATCC/CCGGTTCTCATC...GCCAG|CGC | 1 | 1 | 76.755 |
44701783 | GT-AG | 0 | 1.000000099473604e-05 | 3950 | rna-XM_006830874.1 8322031 | 8 | 52712601 | 52716550 | Chrysochloris asiatica 185453 | TCT|GTGAGTACCA...CGCCCCTTATGC/CCGCCCCTTATG...CGCAG|GTG | 0 | 1 | 81.481 |
44701784 | GT-AG | 0 | 1.000000099473604e-05 | 73 | rna-XM_006830874.1 8322031 | 9 | 52712353 | 52712425 | Chrysochloris asiatica 185453 | ACG|GTGAGCAGTA...GCGCCCCTGACC/GCGCCCCTGACC...TGCAG|GCA | 1 | 1 | 87.654 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "introns" ( "id" INTEGER, "dinucleotide_pair" TEXT, "is_minor" INTEGER, "score" REAL, "length" INTEGER, "transcript_id" INTEGER, "ordinal_index" INTEGER, "start" INTEGER, "end" INTEGER, "taxonomy_id" INTEGER, "scored_motifs" TEXT, "phase" INTEGER, "in_cds" INTEGER, "relative_position" REAL ,PRIMARY KEY ([id]), FOREIGN KEY([transcript_id]) REFERENCES [transcripts]([id]), FOREIGN KEY([taxonomy_id]) REFERENCES [genomes]([taxonomy_id]) ); CREATE INDEX [idx_introns_transcript_id] ON [introns] ([transcript_id]); CREATE INDEX [idx_introns_taxonomy_id] ON [introns] ([taxonomy_id]); CREATE INDEX [idx_introns_phase] ON [introns] ([phase]); CREATE INDEX [idx_introns_is_minor] ON [introns] ([is_minor]); CREATE INDEX [idx_introns_dinucleotide_pair] ON [introns] ([dinucleotide_pair]); CREATE INDEX [idx_introns_score] ON [introns] ([score]); CREATE INDEX [idx_introns_in_cds] ON [introns] ([in_cds]);