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)

14 rows where transcript_id = 76516

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
347262 GT-AG 0 1.000000099473604e-05 677 rna-XM_022256457.1 76516 2 3204139 3204815 Acanthaster planci 133434 CAG|GTAAATGTCC...TTTCGTTTAAAT/TTTCGTTTAAAT...GGCAG|GGA 2 1 13.29
347263 GT-AG 0 0.0005101180446447 578 rna-XM_022256457.1 76516 3 3204961 3205538 Acanthaster planci 133434 CAG|GTAACCGCAT...TTTTTCTTATGA/GTTTTTCTTATG...GATAG|GTG 0 1 21.061
347264 GT-AG 0 1.000000099473604e-05 386 rna-XM_022256457.1 76516 4 3205677 3206062 Acanthaster planci 133434 GAG|GTAAGGACGG...CTTCTCTGGACT/ACTCCTTTCAAT...CCCAG|GAC 0 1 28.457
347265 GT-AG 0 1.000000099473604e-05 499 rna-XM_022256457.1 76516 5 3206172 3206670 Acanthaster planci 133434 TCG|GTAAGGGCCC...TTTTGTTTACCT/CTTTTGTTTACC...TGCAG|CCA 1 1 34.298
347266 GT-AG 0 0.0019016191356975 249 rna-XM_022256457.1 76516 6 3206769 3207017 Acanthaster planci 133434 AAT|GTACGTCTCA...TGAGTTTTGACC/TGGTTTTTCATC...CACAG|CTT 0 1 39.55
347267 GT-AG 0 1.000000099473604e-05 245 rna-XM_022256457.1 76516 7 3207098 3207342 Acanthaster planci 133434 AAT|GTAAGACAAT...TGAGCTTTGTTC/GTTGTTGTGAGC...AAAAG|TGG 2 1 43.837
347268 GT-AG 0 1.000000099473604e-05 1162 rna-XM_022256457.1 76516 8 3207550 3208711 Acanthaster planci 133434 CAA|GTCAGTTGGA...CCCGTTTTGATT/CCCGTTTTGATT...TTCAG|AGA 2 1 54.93
347269 GT-AG 0 1.000000099473604e-05 186 rna-XM_022256457.1 76516 9 3208787 3208972 Acanthaster planci 133434 GAG|GTAAGTAACA...TTTCTCTTCATG/TTTCTCTTCATG...TCTAG|GAG 2 1 58.95
347270 GT-AG 0 1.000000099473604e-05 465 rna-XM_022256457.1 76516 10 3209074 3209538 Acanthaster planci 133434 ATG|GTAAAGACCA...ACTTGTTTATTT/TACTTGTTTATT...ATCAG|GTG 1 1 64.362
347271 GT-AG 0 1.3645178828022532e-05 595 rna-XM_022256457.1 76516 11 3209667 3210261 Acanthaster planci 133434 CGG|GTATTTGGAA...CCTGCTTCAAGA/ATGTTACGCATC...CACAG|AGC 0 1 71.222
347272 GT-AG 0 1.000000099473604e-05 124 rna-XM_022256457.1 76516 12 3210418 3210541 Acanthaster planci 133434 GTG|GTAAGACAGA...CTCTCTTTCACT/CTCTCTTTCACT...TGTAG|AGG 0 1 79.582
347273 GT-AG 0 1.000000099473604e-05 596 rna-XM_022256457.1 76516 13 3210770 3211365 Acanthaster planci 133434 AAG|GTGGGGGGAT...TTGCTTTTGGTT/TCAGATTTTATG...TGCAG|AGC 0 1 91.801
347274 GT-AG 0 1.000000099473604e-05 527 rna-XM_022256457.1 76516 14 3211459 3211985 Acanthaster planci 133434 AAG|GTGAGCCTTA...CATCTTTTAAAT/CATCTTTTAAAT...TGCAG|GAA 0 1 96.785
348267 GT-AG 0 1.000000099473604e-05 1458 rna-XM_022256457.1 76516 1 3202398 3203855 Acanthaster planci 133434 GAC|GTAAGTAAAC...TGTGACTTAATT/CATCTTTTCATG...CTCAG|CCC   0 6.109

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