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

✎ 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
204419541 GT-AG 0 7.900966909327211e-05 646 rna-XM_038845860.1 36995239 1 8287401 8288046 Tripterygium wilfordii 458696 CAA|GTAAGCCTCT...TTGCTATTAATG/TTGCTATTAATG...GGCAG|GAA 2 1 5.454
204419542 GT-AG 0 1.1488053151795344e-05 2092 rna-XM_038845860.1 36995239 2 8285159 8287250 Tripterygium wilfordii 458696 GAG|GTATGAGCTT...TATATTTTATTA/GTATATTTTATT...TCCAG|TAT 2 1 10.535
204419543 GT-AG 0 0.0069311289605071 1116 rna-XM_038845860.1 36995239 3 8283964 8285079 Tripterygium wilfordii 458696 AAG|GTATTCCATT...ATACTCTTATAT/ATATTTCTGATA...TACAG|GGT 0 1 13.211
204419544 GT-AG 0 1.000000099473604e-05 1224 rna-XM_038845860.1 36995239 4 8282648 8283871 Tripterygium wilfordii 458696 TTG|GTAATTCCTG...GCCTTCCTGACT/TCCTGACTTATT...CGTAG|GAT 2 1 16.328
204419545 GT-AG 0 9.36519844107433e-05 2137 rna-XM_038845860.1 36995239 5 8280396 8282532 Tripterygium wilfordii 458696 AAG|GTATGTGTAT...TTTCTCTTTATG/TTTCTCTTTATG...TCTAG|GGT 0 1 20.224
204419546 GT-AG 0 1.5178818951994904e-05 180 rna-XM_038845860.1 36995239 6 8280115 8280294 Tripterygium wilfordii 458696 TCT|GTGAGTATTG...CTTACTTTAACA/TTTGTTTTTATT...TTTAG|TTA 2 1 23.645
204419547 GT-AG 0 1.000000099473604e-05 415 rna-XM_038845860.1 36995239 7 8279638 8280052 Tripterygium wilfordii 458696 GAG|GTAATATATT...ATTTCCTTTTCT/ATTTTACTGATT...TGCAG|AGA 1 1 25.745
204419548 GT-AG 0 1.000000099473604e-05 890 rna-XM_038845860.1 36995239 8 8278520 8279409 Tripterygium wilfordii 458696 CAG|GTTAGTCTCT...CTTTTCTTGCCG/CCGATTATAATG...TGCAG|TTG 1 1 33.469
204419549 GT-AG 0 0.0009223175237845 181 rna-XM_038845860.1 36995239 9 8278224 8278404 Tripterygium wilfordii 458696 CAA|GTAAGCTGTG...TCTTCTTTATTG/GTTTTTCTAACG...TGCAG|TGC 2 1 37.364
204419550 GT-AG 0 0.0001453429808081 649 rna-XM_038845860.1 36995239 10 8277380 8278028 Tripterygium wilfordii 458696 CAG|GTATATCTAT...AAAATGTTGAAC/AAAATGTTGAAC...TGCAG|GCT 2 1 43.97
204419551 GT-AG 0 0.0046464250125134 767 rna-XM_038845860.1 36995239 11 8276212 8276978 Tripterygium wilfordii 458696 TAG|GTATAATTCC...GTATTTTTACCA/TGTATTTTTACC...TGCAG|TGA 1 1 57.554
204419552 GT-AG 0 1.000000099473604e-05 339 rna-XM_038845860.1 36995239 12 8275711 8276049 Tripterygium wilfordii 458696 GAG|GTAAGTACTT...ATAGTTTTAGTT/TTTTAGTTGACC...TGCAG|CAA 1 1 63.042

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