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 = 19419615

✎ View and edit SQL

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
103972356 GT-AG 0 1.000000099473604e-05 4614 rna-XM_017804960.1 19419615 1 11469673 11474286 Lepidothrix coronata 321398 AAG|GTAAGGGACG...CCTTTTTTAGAA/ACCTTTTTTAGA...TACAG|AAT 0 1 3.934
103972357 GT-AG 0 9.487350452272518e-05 894 rna-XM_017804960.1 19419615 2 11468611 11469504 Lepidothrix coronata 321398 CAG|GTATTGTGTT...GTAGATTTGATG/GATAAATTAATT...TTCAG|GGA 0 1 13.115
103972358 GT-AG 0 0.0007457842965607 347 rna-XM_017804960.1 19419615 3 11468157 11468503 Lepidothrix coronata 321398 AAG|GTACTTTTCA...CTTTTCTTCCTG/AATGAATATATT...TTTAG|GTT 2 1 18.962
103972359 GT-AG 0 0.0001210733090709 999 rna-XM_017804960.1 19419615 4 11467073 11468071 Lepidothrix coronata 321398 GTG|GTAGGTTTTC...ATAACTTTCTCT/TATATAGTAAGT...TACAG|CCA 0 1 23.607
103972360 GT-AG 0 2.2629477949611028 819 rna-XM_017804960.1 19419615 5 11466170 11466988 Lepidothrix coronata 321398 AAG|GTATCCCTAT...ACTGTCTTATAA/CAAATACTCACC...TTTAG|GTT 0 1 28.197
103972361 GT-AG 0 1.000000099473604e-05 405 rna-XM_017804960.1 19419615 6 11465571 11465975 Lepidothrix coronata 321398 CAG|GTGACTGGTG...TCTTCCATATCC/TTACTGTTAACC...TTCAG|GAA 2 1 38.798
103972362 GT-AG 0 1.000000099473604e-05 688 rna-XM_017804960.1 19419615 7 11464693 11465380 Lepidothrix coronata 321398 CTG|GTAAATAGGT...TAATGCTTATCT/TTAATGCTTATC...TCCAG|ACA 0 1 49.18
103972363 GT-AG 0 0.0001338727104669 2452 rna-XM_017804960.1 19419615 8 11462143 11464594 Lepidothrix coronata 321398 GAG|GTATGGTAAT...TATCCTTTGAAA/TTTGCTATTATT...TCTAG|TGG 2 1 54.536
103972364 GT-AG 0 1.000000099473604e-05 113 rna-XM_017804960.1 19419615 9 11461849 11461961 Lepidothrix coronata 321398 GAG|GTAAGCAACA...TGCTTTTTAATG/TTTCTCCTCACT...TGCAG|GAA 0 1 64.426
103972365 GT-AG 0 1.000000099473604e-05 1091 rna-XM_017804960.1 19419615 10 11460664 11461754 Lepidothrix coronata 321398 TAG|GTAAGAAACA...AAAATGTTATAT/TTATATATTATG...TTTAG|GAT 1 1 69.563
103972366 GT-AG 0 1.1439339141125597e-05 2537 rna-XM_017804960.1 19419615 11 11457997 11460533 Lepidothrix coronata 321398 TGA|GTGAGTTCAA...GCTTCTTTAATT/CTTTAATTCATG...CACAG|ATA 2 1 76.667
103972367 GT-AG 0 0.0017595287297243 620 rna-XM_017804960.1 19419615 12 11457187 11457806 Lepidothrix coronata 321398 GCT|GTAAGTATCT...ATATTCTTAATA/AATATTCTTAAT...TCTAG|ATA 0 1 87.049
103972368 GT-AG 0 3.1737972964101944e-05 758 rna-XM_017804960.1 19419615 13 11456295 11457052 Lepidothrix coronata 321398 CAG|GTATGGTCAC...TTTTCCATGTCT/CCACTTGTGACA...CCCAG|TGA 2 1 94.372

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 26.725ms · Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)