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)

12 rows where transcript_id = 20211464

✎ 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
108234707 GT-AG 0 2.9743241112598853e-05 209 rna-XM_019588851.1 20211464 1 5801517 5801725 Lupinus angustifolius 3871 CTG|GTAAAATTTT...TTTGTTTTATTT/TTTTATTTTATT...TGCAG|CTA 1 1 0.944
108234708 GT-AG 0 3.828347496919313e-05 758 rna-XM_019588851.1 20211464 2 5800658 5801415 Lupinus angustifolius 3871 CCT|GTAAGTTTCA...GGAGTTTGGAAT/TGGAATTTCACT...TGCAG|GAT 0 1 4.018
108234709 GT-AG 0 8.56988094945019e-05 243 rna-XM_019588851.1 20211464 3 5800185 5800427 Lupinus angustifolius 3871 TAG|GTAAATATAG...GTTTTCTTAATA/AGTTTTCTTAAT...GCCAG|ATT 2 1 11.02
108234710 GT-AG 0 0.0010411197575907 179 rna-XM_019588851.1 20211464 4 5799838 5800016 Lupinus angustifolius 3871 TAG|GTATGATTTT...CTTACCATAGCT/TATAAACTTACC...TTCAG|TTT 2 1 16.134
108234711 GT-AG 0 0.0066819048293326 99 rna-XM_019588851.1 20211464 5 5799372 5799470 Lupinus angustifolius 3871 TGG|GTACTTTTCT...AAGTTGTTAGCT/TTGTTGTTGAAA...CTTAG|ACT 0 1 27.306
108234712 GT-AG 0 2.289899394605962 2058 rna-XM_019588851.1 20211464 6 5797170 5799227 Lupinus angustifolius 3871 AAG|GTATCTTTCT...ATGTTTATAGCT/GCGATGTTTATA...TGCAG|AGA 0 1 31.689
108234713 GT-AG 0 0.0008650864191755 101 rna-XM_019588851.1 20211464 7 5796916 5797016 Lupinus angustifolius 3871 TTG|GTATGATTAG...TGTGTTTTATTT/CTGTGTTTTATT...CACAG|GGA 0 1 36.347
108234714 GT-AG 0 1.000000099473604e-05 6101 rna-XM_019588851.1 20211464 8 5790698 5796798 Lupinus angustifolius 3871 ATG|GTAGGTAGCA...TGTTCCTTTCTT/AATTTACTAATT...TTTAG|AGT 0 1 39.909
108234715 GT-AG 0 0.0185367987526374 544 rna-XM_019588851.1 20211464 9 5790073 5790616 Lupinus angustifolius 3871 GAG|GTATGTTTGT...GTTGTCTTGATG/ATTATTTTAAAA...TGCAG|GAG 0 1 42.374
108234716 GT-AG 0 1.000000099473604e-05 1505 rna-XM_019588851.1 20211464 10 5788418 5789922 Lupinus angustifolius 3871 GAG|GTCATATTTC...TGACCCTTCTAT/TTGATACTGACC...ACCAG|TTC 0 1 46.941
108234717 GT-AG 0 8.813991064044238e-05 369 rna-XM_019588851.1 20211464 11 5786465 5786833 Lupinus angustifolius 3871 CAG|GTACAATATG...GAACTCTTAATT/ATTCTTCTAATT...GGCAG|AAC 0 1 95.16
108234718 GT-AG 0 1.000000099473604e-05 178 rna-XM_019588851.1 20211464 12 5786230 5786407 Lupinus angustifolius 3871 CAG|GTGAGTTAAA...ATTTTTGTATTT/TGTATTTTCATT...TGCAG|GGC 0 1 96.895

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