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)
11 rows where transcript_id = 31341618
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
174593031 | GT-AG | 0 | 1.1663698468561746e-05 | 52 | rna-NZN594_LOCUS886 31341618 | 1 | 4867931 | 4867982 | Rotaria sp. silwood1 2762511 | CAA|GTAAATCATT...TTTTGTTTATTT/TTTTTGTTTATT...TTCAG|ATG | 1 | 1 | 1.787 |
174593032 | GT-AG | 0 | 0.0007369133993855 | 74 | rna-NZN594_LOCUS886 31341618 | 2 | 4867724 | 4867797 | Rotaria sp. silwood1 2762511 | AAA|GTAACAGCAT...TATTTCTTAATT/TATTTCTTAATT...TTAAG|TTC | 2 | 1 | 4.316 |
174593033 | GT-AG | 0 | 2.732090178897173e-05 | 49 | rna-NZN594_LOCUS886 31341618 | 3 | 4867017 | 4867065 | Rotaria sp. silwood1 2762511 | GAA|GTAAAATCAA...AAATTCTTATTT/TTCTTATTTATT...TTTAG|CCA | 0 | 1 | 16.828 |
174593034 | GT-AG | 0 | 1.000000099473604e-05 | 67 | rna-NZN594_LOCUS886 31341618 | 4 | 4866102 | 4866168 | Rotaria sp. silwood1 2762511 | AAG|GTAAATAAAT...GTTTTGTTAAAG/TAAATATTGATA...ATTAG|TCG | 2 | 1 | 32.953 |
174593035 | GT-AG | 0 | 1.000000099473604e-05 | 46 | rna-NZN594_LOCUS886 31341618 | 5 | 4865966 | 4866011 | Rotaria sp. silwood1 2762511 | CAG|GTGAATACTT...ATTTTCATATCT/AATATTTTCATA...TCTAG|TCA | 2 | 1 | 34.664 |
174593036 | GT-AG | 0 | 0.0010104683794368 | 47 | rna-NZN594_LOCUS886 31341618 | 6 | 4865859 | 4865905 | Rotaria sp. silwood1 2762511 | AAA|GTAAACATTT...TTTGTGTTAATT/TTTGTGTTAATT...TTTAG|TCA | 2 | 1 | 35.805 |
174593037 | GT-AG | 0 | 0.0001881721987565 | 65 | rna-NZN594_LOCUS886 31341618 | 7 | 4864552 | 4864616 | Rotaria sp. silwood1 2762511 | AAG|GTTTCAATAA...TGATTCTTTTCT/TCTTTTCTAACA...TCTAG|TCC | 2 | 1 | 59.422 |
174593038 | GT-AG | 0 | 0.1064323312661324 | 71 | rna-NZN594_LOCUS886 31341618 | 8 | 4864048 | 4864118 | Rotaria sp. silwood1 2762511 | AAT|GTATGTTGTT...TTTCTCTTATTT/GTTTTTTTTATT...TTTAG|CAT | 0 | 1 | 67.655 |
174593039 | GT-AG | 0 | 1.000000099473604e-05 | 58 | rna-NZN594_LOCUS886 31341618 | 9 | 4863620 | 4863677 | Rotaria sp. silwood1 2762511 | CAG|GTAAATAATA...ATCATTTTATTT/TATTTTTTCAAT...AAAAG|ATG | 1 | 1 | 74.691 |
174593040 | GT-AG | 0 | 5.7575431242778334e-05 | 459 | rna-NZN594_LOCUS886 31341618 | 10 | 4862921 | 4863379 | Rotaria sp. silwood1 2762511 | GAG|GTAAATTGTT...TTGGCTTTATTT/CTTGGCTTTATT...TTTAG|AAT | 1 | 1 | 79.255 |
174593041 | GT-AG | 0 | 1.000000099473604e-05 | 66 | rna-NZN594_LOCUS886 31341618 | 11 | 4862164 | 4862229 | Rotaria sp. silwood1 2762511 | TAG|GTTATTTAAA...TTTTTCTTGTCA/TATTTATTTATT...TGTAG|AGT | 2 | 1 | 92.394 |
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]);