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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, 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
49484505 GT-AG 0 1.000000099473604e-05 7566 rna-XM_004673813.2 9129077 2 58462479 58470044 Condylura cristata 143302 CAG|GTAAGTCACT...TGTTTTTTTGTG/GATCAATTGATG...ATCAG|GTT 1 1 11.456
49484506 GT-AG 0 1.000000099473604e-05 1150 rna-XM_004673813.2 9129077 3 58461012 58462161 Condylura cristata 143302 CAG|GTAAATACTC...GTTTTCTTTTCC/AGTATATTTAAG...GCTAG|GTT 0 1 20.49
49484507 GT-AG 0 1.000000099473604e-05 889 rna-XM_004673813.2 9129077 4 58460041 58460929 Condylura cristata 143302 CTG|GTAAGAATTC...GTCCTGTTACTA/GGTCCTGTTACT...CTTAG|GCG 1 1 22.827
49484508 GT-AG 0 1.000000099473604e-05 1907 rna-XM_004673813.2 9129077 5 58457933 58459839 Condylura cristata 143302 CAG|GTTTGTGATT...GGTAACTTGACA/TTATTGGTAACT...CCCAG|GAA 1 1 28.555
49484509 GT-AG 0 1.000000099473604e-05 1578 rna-XM_004673813.2 9129077 6 58456229 58457806 Condylura cristata 143302 GAG|GTTAGTACCT...CTTTTCATAGAA/AAGCTTTTCATA...TCTAG|GTG 1 1 32.146
49484510 GT-AG 0 0.0123593695598728 26699 rna-XM_004673813.2 9129077 7 58429410 58456108 Condylura cristata 143302 CAG|GTATTTTATG...TGACTTTTGACA/AATCTACTGACA...CTTAG|GTC 1 1 35.566
49484511 GT-AG 0 1.000000099473604e-05 4695 rna-XM_004673813.2 9129077 8 58424540 58429234 Condylura cristata 143302 TGG|GTGAGGGTTT...TGACTTTTACCT/AATCTTTTCATT...GGCAG|CCT 2 1 40.553
49484512 GT-AG 0 4.667268098743608e-05 1344 rna-XM_004673813.2 9129077 9 58422993 58424336 Condylura cristata 143302 AAG|GTATGTGGAC...CTGTTCTTAGAA/AAACTACTAACT...TACAG|GTT 1 1 46.338
49484513 GT-AG 0 0.0055838983122253 1240 rna-XM_004673813.2 9129077 10 58421549 58422788 Condylura cristata 143302 AAG|GTTTATTTGA...ATCTTCTTAATT/ATCTTCTTAATT...CTTAG|CTC 1 1 52.152
49484514 GT-AG 0 1.000000099473604e-05 561 rna-XM_004673813.2 9129077 11 58420905 58421465 Condylura cristata 143302 CAG|GTAAGGGGAT...CTCTTCCTGATA/CTCTTCCTGATA...CACAG|GGA 0 1 54.517
49484515 GC-AG 0 1.000000099473604e-05 4398 rna-XM_004673813.2 9129077 12 58416361 58420758 Condylura cristata 143302 AAG|GCAAGAAAAG...GTTCTCTTAATC/GTTCTCTTAATC...TACAG|GTT 2 1 58.678
49488667 GT-AG 0 1.000000099473604e-05 1437 rna-XM_004673813.2 9129077 1 58470364 58471800 Condylura cristata 143302 CCA|GTAAGTGACA...TTTTTCTTTTTT/TCAGAATTAATT...TTTAG|TTA   0 2.793

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