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

✎ 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
153481080 GT-AG 0 1.000000099473604e-05 851 rna-XM_024522762.1 27592279 1 23452212 23453062 Physcomitrium patens 3218 CCT|GTAAGTGATA...ACAATGTTGATA/GATGTTCTCATG...TGCAG|AAA 2 1 1.102
153481081 GT-AG 0 0.0023021396270011 451 rna-XM_024522762.1 27592279 2 23453112 23453562 Physcomitrium patens 3218 CGG|GTATGTTTCT...GTGTACTTACGA/GGTGTACTTACG...AACAG|TTG 0 1 2.419
153481082 GT-AG 0 5.990306657501104e-05 248 rna-XM_024522762.1 27592279 3 23453692 23453939 Physcomitrium patens 3218 GAG|GTGTGTATTT...GTTTTTTTAGCA/GGTTTTTTTAGC...TACAG|GAA 0 1 5.887
153481083 GT-AG 0 0.1009804813567651 202 rna-XM_024522762.1 27592279 4 23454242 23454443 Physcomitrium patens 3218 CAG|GTACCCCGCT...AAAATTTTGATG/ACATGTTTGATC...TGTAG|TCC 2 1 14.005
153481084 GT-AG 0 1.000000099473604e-05 124 rna-XM_024522762.1 27592279 5 23454712 23454835 Physcomitrium patens 3218 GCG|GTAAGTACCA...TGATTTTTGTTG/CTCGGGTTTATT...TGCAG|TTG 0 1 21.21
153481085 GT-AG 0 0.0001543108901947 208 rna-XM_024522762.1 27592279 6 23455025 23455232 Physcomitrium patens 3218 GAG|GTATTGTAGA...CATTTTTGGATG/TCAAAATTTACA...TTCAG|ATA 0 1 26.29
153481086 GT-AG 0 1.000000099473604e-05 292 rna-XM_024522762.1 27592279 7 23455411 23455702 Physcomitrium patens 3218 AAG|GTAAGCATTT...AATTCGTTGTCT/GAAGTGCTGACC...TGAAG|GGC 1 1 31.075
153481087 GT-AG 0 1.000000099473604e-05 399 rna-XM_024522762.1 27592279 8 23456383 23456781 Physcomitrium patens 3218 TTG|GTTCGTTCAT...TTGGTTTTAGTC/TACTTGTTCATC...TGTAG|GGG 0 1 49.355
153481088 GT-AG 0 0.0252330588662476 424 rna-XM_024522762.1 27592279 9 23457262 23457685 Physcomitrium patens 3218 AAG|GTACACTTTG...TTGCTTTTGATG/TTGCTTTTGATG...TGCAG|GAA 0 1 62.258
153481089 GT-AG 0 1.000000099473604e-05 596 rna-XM_024522762.1 27592279 10 23458253 23458848 Physcomitrium patens 3218 CGG|GTGAGAAGTT...AAGTTTTTAATG/AAGTTTTTAATG...TGCAG|GAT 0 1 77.5
153481090 GT-AG 0 1.000000099473604e-05 159 rna-XM_024522762.1 27592279 11 23459069 23459227 Physcomitrium patens 3218 ATG|GTAATACCCA...TTCTTCTTGGTG/CGTTTACTAATT...TTTAG|GGC 1 1 83.414
153481091 GT-AG 0 1.000000099473604e-05 342 rna-XM_024522762.1 27592279 12 23459479 23459820 Physcomitrium patens 3218 TTG|GTCAGTTATC...TTTTTTATGATA/TGGCTTTTCATC...TAAAG|GCT 0 1 90.161
153481092 GT-AG 0 1.000000099473604e-05 175 rna-XM_024522762.1 27592279 13 23460088 23460262 Physcomitrium patens 3218 AAG|GTGAGTTCTA...TTATTATTGATG/TTATTATTGATG...AACAG|ATG 0 1 97.339

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