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

✎ 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
77699823 GT-AG 0 6.552148812215942e-05 29798 rna-XM_005228699.3 14514664 1 9611718 9641515 Falco peregrinus 8954 GTA|GTAAGTTTGT...TGTACCTGACTG/TGTGATTTCATT...TTTAG|GTT 0 1 19.931
77699824 GT-AG 0 1.000000099473604e-05 1797 rna-XM_005228699.3 14514664 2 9609735 9611531 Falco peregrinus 8954 AAG|GTGAGAACTT...ATTGACTTGATG/AATAAATTGACT...TCTAG|GCT 0 1 30.584
77699825 GT-AG 0 1.000000099473604e-05 562 rna-XM_005228699.3 14514664 3 9609069 9609630 Falco peregrinus 8954 GAA|GTAAGTAGAT...AAATACTTACAT/GAAATACTTACA...TTCAG|AAT 2 1 36.541
77699826 GT-AG 0 1.000000099473604e-05 729 rna-XM_005228699.3 14514664 4 9608237 9608965 Falco peregrinus 8954 CAG|GTAAATGGCA...ATGTTGTTACTG/GATGTTGTTACT...GGTAG|GAT 0 1 42.44
77699827 GT-AG 0 1.000000099473604e-05 3451 rna-XM_005228699.3 14514664 5 9604711 9608161 Falco peregrinus 8954 ACA|GTAAGTGATT...GGGTATTTAGTT/AGGGTATTTAGT...TGCAG|GTT 0 1 46.735
77699828 GT-AG 0 0.000126900844232 420 rna-XM_005228699.3 14514664 6 9604204 9604623 Falco peregrinus 8954 CAG|GTACATAATA...AATTTTTTAATG/AATTTTTTAATG...AATAG|AAT 0 1 51.718
77699829 GT-AG 0 8.956239656595192e-05 1901 rna-XM_005228699.3 14514664 7 9602146 9604046 Falco peregrinus 8954 ATG|GTATGACTAA...ACTATTTTAAAC/ACTATTTTAAAC...CACAG|CAA 1 1 60.71
77699830 GT-AG 0 0.0001499138792854 1249 rna-XM_005228699.3 14514664 8 9600848 9602096 Falco peregrinus 8954 AAG|GTACTTATTC...CTTTCCTCATTC/TCTTTCCTCATT...TCAAG|AGG 2 1 63.517
77699831 GT-AG 0 1.000000099473604e-05 1452 rna-XM_005228699.3 14514664 9 9599306 9600757 Falco peregrinus 8954 TAG|GTAAGAATGA...TTGCTCTTAATT/TTGCTCTTAATT...TTCAG|CAT 2 1 68.671
77699832 GT-AG 0 1.000000099473604e-05 3359 rna-XM_005228699.3 14514664 10 9595771 9599129 Falco peregrinus 8954 AAG|GTAAAATCCT...CGTCTCATAATC/TCTCGTCTCATA...TACAG|GAA 1 1 78.751
77699833 GT-AG 0 1.000000099473604e-05 83 rna-XM_005228699.3 14514664 11 9595569 9595651 Falco peregrinus 8954 CGG|GTGAGTATGA...TTTTGTATAACT/TTTTGTATAACT...TTTAG|GAT 0 1 85.567
77699834 GT-AG 0 1.000000099473604e-05 5931 rna-XM_005228699.3 14514664 12 9589531 9595461 Falco peregrinus 8954 CGG|GTAAGAATGT...GACTCTTTATCT/TTTTTGCTCACT...CCTAG|GTA 2 1 91.695

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