home / WtMTA

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)

13 rows where transcript_id = 13851092

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
73763121 GT-AG 0 1.000000099473604e-05 1091 rna-XM_012977523.1 13851092 1 3955194 3956284 Erythranthe guttata 4155 GCG|GTAAGTAATT...TTATGCTTACTG/CTTTGCTTCACT...TGAAG|GGA 1 1 11.02
73763122 GT-AG 0 1.000000099473604e-05 197 rna-XM_012977523.1 13851092 2 3954819 3955015 Erythranthe guttata 4155 CAG|GTAGGATTAT...TATTATTTGATT/TATTATTTGATT...GTCAG|GTC 2 1 16.453
73763123 GT-AG 0 1.5538793412898284e-05 120 rna-XM_012977523.1 13851092 3 3954525 3954644 Erythranthe guttata 4155 AAG|GTTTGCAACT...AAGCTCTAAACA/GAAGCTCTAAAC...TATAG|GGT 2 1 21.764
73763124 GT-AG 0 0.0025664426030167 197 rna-XM_012977523.1 13851092 4 3954180 3954376 Erythranthe guttata 4155 CAG|GTATACATGC...TAGTTTTTGTTT/ATAGTGTTTATT...CATAG|GTG 0 1 26.282
73763125 GT-AG 0 1.000000099473604e-05 176 rna-XM_012977523.1 13851092 5 3953689 3953864 Erythranthe guttata 4155 AAG|GTAACACGTC...TGATCTGTAGCA/TCGAATTTGATC...TGTAG|GTT 0 1 35.897
73763126 GT-AG 0 0.0055491748764251 77 rna-XM_012977523.1 13851092 6 3953465 3953541 Erythranthe guttata 4155 CAG|GTATATATAC...TTCTTCTTATCT/CTTCTTCTTATC...GACAG|GCT 0 1 40.385
73763127 GT-AG 0 1.000000099473604e-05 96 rna-XM_012977523.1 13851092 7 3953188 3953283 Erythranthe guttata 4155 AAG|GTGATTTCAT...TTTTCCTTATAC/CTTATACTGATT...TTTAG|CAT 1 1 45.91
73763128 GT-AG 0 0.0004024512108609 83 rna-XM_012977523.1 13851092 8 3952824 3952906 Erythranthe guttata 4155 CAG|GTATTATCTC...TTTTTCTAAATA/CTTTTACTGACT...TTTAG|GCC 0 1 54.487
73763129 GT-AG 0 0.021983886703544 88 rna-XM_012977523.1 13851092 9 3952616 3952703 Erythranthe guttata 4155 AAG|GTATATTCCG...ACTACCTTAATC/GATAATTTGACA...TATAG|GAC 0 1 58.15
73763130 GT-AG 0 0.0412615209566091 100 rna-XM_012977523.1 13851092 10 3952371 3952470 Erythranthe guttata 4155 CAT|GTATGATTTT...TTATTCTTATCG/TTTATTCTTATC...TGCAG|ATG 1 1 62.576
73763131 GT-AG 0 0.0017867651787567 86 rna-XM_012977523.1 13851092 11 3952016 3952101 Erythranthe guttata 4155 GAG|GTACCACACT...ACGGTTTTAATT/ACGGTTTTAATT...AACAG|ATG 0 1 70.788
73763132 GT-AG 0 0.140186780531086 98 rna-XM_012977523.1 13851092 12 3951723 3951820 Erythranthe guttata 4155 CAG|GTATCTCCTT...ATTTATTTGATC/ATTTATTTGATC...TGCAG|GGA 0 1 76.74
73763133 GT-AG 0 7.636843184608864e-05 86 rna-XM_012977523.1 13851092 13 3951097 3951182 Erythranthe guttata 4155 CAG|GTATTACAAA...TCGTCCTTATTT/TTCGTCCTTATT...ATCAG|GTG 0 1 93.223

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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]);
Powered by Datasette · Queries took 130.299ms · Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)