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

✎ 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
103972110 GT-AG 0 1.000000099473604e-05 5756 rna-XM_017824695.1 19419592 1 15923970 15929725 Lepidothrix coronata 321398 CGG|GTGAGGGGCG...TGTCTCTTAACT/ACGTGTCTCATT...TTCAG|GAA 2 1 2.959
103972111 GT-AG 0 1.000000099473604e-05 4093 rna-XM_017824695.1 19419592 2 15930075 15934167 Lepidothrix coronata 321398 CAG|GTGAGTTCTT...GTGTTCATAACT/AGTGTGTTCATA...GACAG|ATC 0 1 18.146
103972112 GT-AG 0 1.342997815687141e-05 1078 rna-XM_017824695.1 19419592 3 15934362 15935439 Lepidothrix coronata 321398 GAA|GTAAGTATGG...TTTCTCTTTGTG/ATCAGACTTACT...TTCAG|GTA 2 1 26.588
103972113 GT-AG 0 1.000000099473604e-05 381 rna-XM_017824695.1 19419592 4 15935600 15935980 Lepidothrix coronata 321398 AAG|GTCAGTAATG...AACCTCTTGAAT/TCTTGAATAACT...TACAG|GTT 0 1 33.551
103972114 GT-AG 0 0.0004092901425831 10739 rna-XM_017824695.1 19419592 5 15936200 15946938 Lepidothrix coronata 321398 GAG|GTACTTTCTT...TCTCTTTTAAAC/TCCTTTTTCATG...TGTAG|GAG 0 1 43.081
103972115 GT-AG 0 1.000000099473604e-05 4501 rna-XM_017824695.1 19419592 6 15947107 15951607 Lepidothrix coronata 321398 AAG|GTAAATACTA...CTTCATTTAATT/CTTCATTTAATT...GACAG|GTG 0 1 50.392
103972116 GT-AG 0 1.000000099473604e-05 1543 rna-XM_017824695.1 19419592 7 15951695 15953237 Lepidothrix coronata 321398 AAG|GTAAATGCTT...TTTTCCTTCTTT/GAACTGTTTATT...AATAG|GTG 0 1 54.178
103972117 GT-AG 0 1.000000099473604e-05 157 rna-XM_017824695.1 19419592 8 15953388 15953544 Lepidothrix coronata 321398 CAG|GTAAGGTTAC...AGCGTTTTGAAT/AGCGTTTTGAAT...CCCAG|GAC 0 1 60.705
103972118 GT-AG 0 0.151442334791104 1095 rna-XM_017824695.1 19419592 9 15953654 15954748 Lepidothrix coronata 321398 CAG|GTATCTATTT...ATACTTTTTTCT/GTTTGGTTAATA...TTCAG|CTC 1 1 65.448
103972119 GT-AG 0 1.000000099473604e-05 3176 rna-XM_017824695.1 19419592 10 15954941 15958116 Lepidothrix coronata 321398 CAG|GTAATAGCAG...GGGCCCATACCA/GCGTGACTCATC...TTTAG|TCC 1 1 73.803
103972120 GT-AG 0 2.252409239085085e-05 2207 rna-XM_017824695.1 19419592 11 15958240 15960446 Lepidothrix coronata 321398 AAA|GTAAGTCTGT...CTAATTTTGATT/CATGTTCTAATT...TGCAG|ATC 1 1 79.156
103972121 GT-AG 0 3.566584423087583e-05 5078 rna-XM_017824695.1 19419592 12 15960638 15965715 Lepidothrix coronata 321398 CAG|GTATGTGTGT...AATGTCTTTTTA/AATGGCTTCATT...TTTAG|GTG 0 1 87.467
103972122 GT-AG 0 1.000000099473604e-05 1174 rna-XM_017824695.1 19419592 13 15965886 15967059 Lepidothrix coronata 321398 ATG|GTAAGATGAA...TTTTCCTTTTTT/AAAGTTTTGAGT...GACAG|GCT 2 1 94.865

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