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

✎ 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
153481433 GT-AG 0 1.000000099473604e-05 196 rna-XM_024524466.1 27592310 3 6968884 6969079 Physcomitrium patens 3218 CAG|GTAGTAGGAG...TCTTCTCTGACT/TCTTCTCTGACT...CACAG|GAC 0 1 34.769
153481434 GT-AG 0 1.000000099473604e-05 899 rna-XM_024524466.1 27592310 4 6969137 6970035 Physcomitrium patens 3218 GAG|GTTAGTAACT...ATGTCTATACTT/AATTGTTTCATC...GGCAG|GAA 0 1 36.231
153481435 GT-AG 0 1.9652693848772705e-05 121 rna-XM_024524466.1 27592310 5 6970264 6970384 Physcomitrium patens 3218 CAG|GTATAGTATT...AACTGCATGATT/TTCAGGCTGATA...TTTAG|GTG 0 1 42.077
153481436 GT-AG 0 1.000000099473604e-05 200 rna-XM_024524466.1 27592310 6 6970479 6970678 Physcomitrium patens 3218 CAG|GTACGGAAGA...TCCGTTTTACTT/TTGGTATTAATA...CATAG|AGG 1 1 44.487
153481437 GT-AG 0 0.0148665469540651 257 rna-XM_024524466.1 27592310 7 6970886 6971142 Physcomitrium patens 3218 CGG|GTATATTTTC...ATATTTTTAAGG/AAGGATCTAACT...TGCAG|GAG 1 1 49.795
153481438 GT-AG 0 1.000000099473604e-05 162 rna-XM_024524466.1 27592310 8 6971283 6971444 Physcomitrium patens 3218 GAG|GTGAGTACTT...ATTTTCGTAAAA/CTATGGATTATT...TACAG|GTC 0 1 53.385
153481439 GT-AG 0 0.0007398884301637 231 rna-XM_024524466.1 27592310 9 6971495 6971725 Physcomitrium patens 3218 CAG|GTACCAGATA...AAACTCTTGATT/CTTGATTTGACG...TGCAG|CAA 2 1 54.667
153481440 GT-AG 0 1.000000099473604e-05 233 rna-XM_024524466.1 27592310 10 6972295 6972527 Physcomitrium patens 3218 CAG|GTGCTTTCGT...CTCGTTTCATTC/CCTCGTTTCATT...TGCAG|AGG 1 1 69.256
153481441 GT-AG 0 0.0002367611742316 113 rna-XM_024524466.1 27592310 11 6972632 6972744 Physcomitrium patens 3218 TTG|GTATGAAATG...ATTTCTTTGACA/CAGGTTCTTACT...TGAAG|GCT 0 1 71.923
153481442 GT-AG 0 1.000000099473604e-05 241 rna-XM_024524466.1 27592310 12 6973531 6973771 Physcomitrium patens 3218 ATG|GTTAGCAAGC...GTTTTTTTAAAT/GTTTTTTTAAAT...TACAG|GAT 0 1 92.077
153481443 GT-AG 0 0.0001040420274378 122 rna-XM_024524466.1 27592310 13 6973940 6974061 Physcomitrium patens 3218 GCG|GTATGATCAC...TTTTCTTTCGAA/TTGTCGCTGATT...GGCAG|ATG 0 1 96.385
153487791 GT-AG 0 1.000000099473604e-05 93 rna-XM_024524466.1 27592310 1 6966793 6966885 Physcomitrium patens 3218 GAT|GTAAGTGCCA...GCGTTCGTAGCG/GTTTAGTTGAAG...GGCAG|GGG   0 14.564
153487792 GT-AG 0 1.000000099473604e-05 599 rna-XM_024524466.1 27592310 2 6966945 6967543 Physcomitrium patens 3218 CAG|GTGGGATTAG...GAATCTTTGAGG/GAGGTATTGATT...ACTAG|GTT   0 16.077

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