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)
10 rows where transcript_id = 27988698
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
155531641 | GT-AG | 0 | 1.000000099473604e-05 | 160 | rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA408134 27988698 | 1 | 2114618 | 2114777 | Piromyces finnis 1754191 | CTG|GTAAGTATAA...TTATTTTTAAAC/TATTTTTTTATA...ATTAG|GAT | 1 | 1 | 15.561 |
155531642 | GT-AG | 0 | 0.0226405903396027 | 91 | rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA408134 27988698 | 2 | 2114067 | 2114157 | Piromyces finnis 1754191 | AAG|GTATATTTAT...CGATTTTTAATA/TTATTATTAATT...AATAG|ATT | 2 | 1 | 34.752 |
155531643 | GT-AG | 0 | 3.3550188803377015e-05 | 82 | rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA408134 27988698 | 3 | 2113875 | 2113956 | Piromyces finnis 1754191 | CAG|GTATGAATAT...TTATTTTTAAAT/ATTAATTTTATT...AATAG|GAT | 1 | 1 | 39.341 |
155531644 | GT-AG | 0 | 0.0007783790679369 | 84 | rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA408134 27988698 | 4 | 2113598 | 2113681 | Piromyces finnis 1754191 | AAA|GTACAATTTT...TATATATTAATA/TATATATTAATA...TTTAG|AAA | 2 | 1 | 47.393 |
155531645 | GT-AG | 0 | 1.000000099473604e-05 | 127 | rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA408134 27988698 | 5 | 2113284 | 2113410 | Piromyces finnis 1754191 | TTG|GTAAGAATAT...TATTATTTAATT/ATATTATTTATT...ATTAG|GCT | 0 | 1 | 55.194 |
155531646 | GT-AG | 0 | 1.000000099473604e-05 | 65 | rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA408134 27988698 | 6 | 2112836 | 2112900 | Piromyces finnis 1754191 | TTG|GTAATTAAAA...TATACTTTATTA/AATATATTAATT...AATAG|TTA | 2 | 1 | 71.172 |
155531647 | GT-AG | 0 | 0.0020127140713528 | 87 | rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA408134 27988698 | 7 | 2112598 | 2112684 | Piromyces finnis 1754191 | GAA|GTATTATATT...ATTTTTTTTAAT/ATTTTTTTTAAT...AATAG|TCA | 0 | 1 | 77.472 |
155531648 | GT-AG | 0 | 0.0012838838944028 | 78 | rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA408134 27988698 | 8 | 2112285 | 2112362 | Piromyces finnis 1754191 | AAT|GTATGTAAAT...AAAATTTTAATT/AAAATTTTAATT...TTTAG|GTT | 1 | 1 | 87.276 |
155531649 | GT-AG | 0 | 1.000000099473604e-05 | 109 | rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA408134 27988698 | 9 | 2111966 | 2112074 | Piromyces finnis 1754191 | CAG|GTAAAACATA...TACTATTTAATA/ATATTATTTACT...TATAG|AAT | 1 | 1 | 96.037 |
155531650 | GT-AG | 0 | 1.000000099473604e-05 | 101 | rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA408134 27988698 | 10 | 2111827 | 2111927 | Piromyces finnis 1754191 | CAG|GTAAAATATA...TAAATTTTAAAA/TAAAATTTAATA...TATAG|AAT | 0 | 1 | 97.622 |
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]);