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

✎ 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
29499424 GT-AG 0 6.65780857950502e-05 908 rna-XM_020361033.2 5774019 1 16541336 16542243 Cajanus cajan 3821 GAG|GTTGCTGACC...TTTATCTTGATT/TTTATCTTGATT...TTCAG|TTG 1 1 7.724
29499425 GT-AG 0 2.3040589038496523e-05 203 rna-XM_020361033.2 5774019 2 16541074 16541276 Cajanus cajan 3821 CTT|GTAAGTAATC...TGCCCCTTATTG/TCTTTGTTGACT...TTTAG|GAT 0 1 10.122
29499426 GT-AG 0 1.000000099473604e-05 506 rna-XM_020361033.2 5774019 3 16540450 16540955 Cajanus cajan 3821 CAG|GTAGAAACCC...TATTTTTTATTC/TTATTTTTTATT...CTTAG|GAA 1 1 14.919
29499427 GT-AG 0 0.0002762617062144 215 rna-XM_020361033.2 5774019 4 16540161 16540375 Cajanus cajan 3821 CAG|GTATTGTGAT...GTCCTCTTATAA/AATTTACTTATT...TTCAG|ATA 0 1 17.927
29499428 GT-AG 0 0.0002228018755018 411 rna-XM_020361033.2 5774019 5 16539681 16540091 Cajanus cajan 3821 ATG|GTATGGTTTA...GATGCAATAACT/CAATTACTAATC...TGCAG|ATT 0 1 20.732
29499429 GT-AG 0 1.000000099473604e-05 676 rna-XM_020361033.2 5774019 6 16538402 16539077 Cajanus cajan 3821 CAG|GTAGTATTGA...AAGTTATTAACA/TGTTTACTCACA...TGCAG|ACA 0 1 45.244
29499430 GT-AG 0 3.1301716568970383e-05 223 rna-XM_020361033.2 5774019 7 16537643 16537865 Cajanus cajan 3821 CAG|GTTTATGATA...CCATTTTTAATG/TTAATGTTTACT...CTCAG|CTT 2 1 67.033
29499431 GT-AG 0 1.000000099473604e-05 509 rna-XM_020361033.2 5774019 8 16537069 16537577 Cajanus cajan 3821 AAG|GTAATTGTTT...TGTTCTTTATTT/TTGTTCTTTATT...TGTAG|GGC 1 1 69.675
29499432 GT-AG 0 1.000000099473604e-05 293 rna-XM_020361033.2 5774019 9 16536696 16536988 Cajanus cajan 3821 AAG|GTAATTCTTG...ATTGTGTTGACA/ATTGTGTTGACA...TGCAG|GCA 0 1 72.927
29499433 GT-AG 0 1.000000099473604e-05 330 rna-XM_020361033.2 5774019 10 16536261 16536590 Cajanus cajan 3821 CAG|GTTACTGCTC...AGTGACTTAATA/TAATATTTCAAC...TTCAG|TTC 0 1 77.195
29499434 GT-AG 0 1.000000099473604e-05 90 rna-XM_020361033.2 5774019 11 16536031 16536120 Cajanus cajan 3821 TAG|GTAAATTGAA...TTTTGTTTACAT/GTTTTGTTTACA...TGCAG|ATC 2 1 82.886
29499435 GT-AG 0 1.000000099473604e-05 856 rna-XM_020361033.2 5774019 12 16535046 16535901 Cajanus cajan 3821 AAG|GTGAGATCTA...ATATTTTTAATT/ATATTTTTAATT...TGCAG|CTT 2 1 88.13
29499436 GT-AG 0 3.0351609112243077e-05 92 rna-XM_020361033.2 5774019 13 16534801 16534892 Cajanus cajan 3821 TAG|GTATTACAAT...GCTCTTTTAAAA/TCTAGTCTCATG...TACAG|CTT 2 1 94.35

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