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

✎ 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
128510041 GT-AG 0 1.3803532757048434e-05 2054 rna-XM_019388865.1 23617037 1 33563554 33565607 Nicotiana attenuata 49451 CTT|GTGAGTTTCT...ATTCTCTTACTC/TAGTTTCTCATG...TCAAG|GAT 0 1 2.363
128510042 GT-AG 0 0.0003002403545035 100 rna-XM_019388865.1 23617037 2 33563381 33563480 Nicotiana attenuata 49451 TGG|GTATGTAATA...TGATTGTTGATT/TGATTGTTGATT...AACAG|GGT 1 1 3.586
128510043 GT-AG 0 0.0002404069818087 220 rna-XM_019388865.1 23617037 3 33563030 33563249 Nicotiana attenuata 49451 GAG|GTACGCAACC...CATTTTTTAATT/CATTTTTTAATT...TACAG|GGT 0 1 5.782
128510044 GT-AG 0 1.000000099473604e-05 108 rna-XM_019388865.1 23617037 4 33562529 33562636 Nicotiana attenuata 49451 CAG|GTGAATCTTT...ATTTTCTTAATC/ATTTTCTTAATC...TGCAG|ATT 0 1 12.368
128510045 GT-AG 0 0.001399408865659 198 rna-XM_019388865.1 23617037 5 33560997 33561194 Nicotiana attenuata 49451 GCT|GTAAGTTTTT...ATTTTCTTCATG/ATTTTCTTCATG...TCTAG|GCC 2 1 34.724
128510046 GT-AG 0 0.1568660649624627 88 rna-XM_019388865.1 23617037 6 33560445 33560532 Nicotiana attenuata 49451 GGG|GTATTTTGTC...TTCTCCTTATTC/CTTCTCCTTATT...TGCAG|GTA 1 1 42.5
128510047 GT-AG 0 0.0001763804013304 129 rna-XM_019388865.1 23617037 7 33558538 33558666 Nicotiana attenuata 49451 AAG|GTTTACATAA...CATAACTTGACG/TATTTACTCATT...TGCAG|AAT 0 1 72.298
128510048 GT-AG 0 1.000000099473604e-05 686 rna-XM_019388865.1 23617037 8 33557697 33558382 Nicotiana attenuata 49451 CGA|GTGAGTTGTC...TTTTTGTTATTT/ATTTTTGTTATT...TATAG|GTT 2 1 74.895
128510049 GT-AG 0 0.0001952044555034 827 rna-XM_019388865.1 23617037 9 33556709 33557535 Nicotiana attenuata 49451 CGG|GTAATTTTAC...GGTTCCTTATTA/GTTATACTTATT...CATAG|GTG 1 1 77.593
128510050 GT-AG 0 0.0001992008678678 508 rna-XM_019388865.1 23617037 10 33556040 33556547 Nicotiana attenuata 49451 TTT|GTAAGTATCA...TTAGTTTTGATT/TTAGTTTTGATT...TACAG|GCA 0 1 80.292
128517155 GT-AG 0 1.000000099473604e-05 114 rna-XM_019388865.1 23617037 11 33555408 33555521 Nicotiana attenuata 49451 AAG|GTAAAAAAGG...ATTTCCTTGATT/ATTTCCTTGATT...TACAG|ATA   0 88.973
128517156 GT-AG 0 0.0057452214155742 87 rna-XM_019388865.1 23617037 12 33555151 33555237 Nicotiana attenuata 49451 CCC|GTATGTTGAA...CCGTCTATAAAA/AAAAAGATTATT...TGCAG|GTT   0 91.822
128517157 GT-AG 0 1.000000099473604e-05 90 rna-XM_019388865.1 23617037 13 33554927 33555016 Nicotiana attenuata 49451 CCA|GTAAGAATCT...TTGGATTTGATG/CCCTGTCTCACT...TACAG|GTC   0 94.067

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