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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
67905260 GT-AG 0 1.000000099473604e-05 1036 rna-XM_022887674.1 12758646 1 4425247 4426282 Durio zibethinus 66656 TTG|GTGAGAAATT...CCTTTCTGATCA/CCCTTTCTGATC...TACAG|ATA 0 1 1.481
67905261 GT-AG 0 1.000000099473604e-05 128 rna-XM_022887674.1 12758646 2 4424765 4424892 Durio zibethinus 66656 CAG|GTAGATTCGC...ATCAGTTTAATT/AATTAACTAATC...AACAG|GAC 0 1 18.963
67905262 GT-AG 0 0.0035527961024468 100 rna-XM_022887674.1 12758646 3 4424616 4424715 Durio zibethinus 66656 TTT|GTAAGTTTCC...GTTATTTTAACC/AAGGTTTTTATT...TACAG|ACT 1 1 21.383
67905263 GT-AG 0 3.3723337837286265e-05 166 rna-XM_022887674.1 12758646 4 4424242 4424407 Durio zibethinus 66656 CAG|GTAATTATTG...CTGCTCTTAGCA/TTAGCATTCACT...ATTAG|GTT 2 1 31.654
67905264 GT-AG 0 3.0426234507942287e-05 160 rna-XM_022887674.1 12758646 5 4423907 4424066 Durio zibethinus 66656 GGA|GTAAGCAGTC...CATTCATTACAT/TTATCATTCATT...TGCAG|TGG 0 1 40.296
67905265 GT-AG 0 1.000000099473604e-05 85 rna-XM_022887674.1 12758646 6 4423756 4423840 Durio zibethinus 66656 ATT|GTAAGAACCT...TAACTTTTACAT/CATTTGCTAACT...AATAG|GGA 0 1 43.556
67905266 GT-AG 0 0.0014273970228983 134 rna-XM_022887674.1 12758646 7 4423508 4423641 Durio zibethinus 66656 ATT|GTAAGCTCCT...TTTTCTTTCATC/TTTTCTTTCATC...TGCAG|GTG 0 1 49.185
67905267 GT-AG 0 1.000000099473604e-05 122 rna-XM_022887674.1 12758646 8 4423269 4423390 Durio zibethinus 66656 ACG|GTAAGCCAAT...TTTTTCTTCTAT/AGACCTTTCATG...AACAG|GAA 0 1 54.963
67905268 GT-AG 0 1.000000099473604e-05 320 rna-XM_022887674.1 12758646 9 4422822 4423141 Durio zibethinus 66656 CAG|GTGAGAAGCT...TATTCCTTCATT/TATTCCTTCATT...TGCAG|GTT 1 1 61.235
67905269 GT-AG 0 1.000000099473604e-05 97 rna-XM_022887674.1 12758646 10 4422438 4422534 Durio zibethinus 66656 GCT|GTAAGAACTT...ATATGTTTGATT/ATATGTTTGATT...TGCAG|GTC 0 1 75.407
67905270 GT-AG 0 0.0044136070427614 548 rna-XM_022887674.1 12758646 11 4421699 4422246 Durio zibethinus 66656 GAG|GTATACATCC...CAGGTTTCAATT/CCAGGTTTCAAT...TGCAG|GAT 2 1 84.84
67905271 GT-AG 0 1.000000099473604e-05 85 rna-XM_022887674.1 12758646 12 4421528 4421612 Durio zibethinus 66656 CAC|GTAAGAATTC...CTTTTCCTAATA/CTTTTCCTAATA...TGCAG|CTG 1 1 89.086
67905272 GT-AG 0 1.000000099473604e-05 157 rna-XM_022887674.1 12758646 13 4421294 4421450 Durio zibethinus 66656 CAG|GTAATTAAAT...TAGCTTTTACCA/ATAGCTTTTACC...CACAG|CTT 0 1 92.889

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