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

✎ 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
187538101 GT-AG 0 1.000000099473604e-05 2380 rna-XM_021464455.1 33469688 2 12216944 12219323 Sorghum bicolor 4558 CCG|GTAAGTACGT...GTTTCTGTGACC/CTCGGTCTCACC...TCAAG|AAG 0 1 6.116
187538102 GT-AG 0 1.000000099473604e-05 107 rna-XM_021464455.1 33469688 3 12216680 12216786 Sorghum bicolor 4558 CTG|GTGAGTACAG...TTGGTCTGATTT/ATTGGTCTGATT...ATCAG|GAG 1 1 8.732
187538103 GT-AG 0 1.000000099473604e-05 104 rna-XM_021464455.1 33469688 4 12216499 12216602 Sorghum bicolor 4558 AAG|GTGAGGTTTT...TTTCACTTGATG/TTTTGTTTCACT...CCTAG|GTG 0 1 10.015
187538104 GT-AG 0 0.7265620405771966 152 rna-XM_021464455.1 33469688 5 12215259 12215410 Sorghum bicolor 4558 AAG|GTATCTCTTT...TTTATGTTAATT/TTTATGTTAATT...TGAAG|GCA 2 1 28.145
187538105 GT-AG 0 0.0001353213601366 517 rna-XM_021464455.1 33469688 6 12214672 12215188 Sorghum bicolor 4558 AAG|GTATGCAAAA...CCCATTTTAGAT/AAGCTTGTCAAT...TTCAG|GAG 0 1 29.312
187538106 GT-AG 0 1.000000099473604e-05 276 rna-XM_021464455.1 33469688 7 12214333 12214608 Sorghum bicolor 4558 AAG|GTAAAGCACA...TTGCCTTTTATT/TTGCCTTTTATT...TTCAG|GAC 0 1 30.362
187538107 GT-AG 0 1.03244712114305e-05 129 rna-XM_021464455.1 33469688 8 12214141 12214269 Sorghum bicolor 4558 AAG|GTACATTCAT...TAATTCCAAATA/CTCCATGTAATT...TTCAG|GAG 0 1 31.411
187538108 GT-AG 0 0.0023029260280478 93 rna-XM_021464455.1 33469688 9 12213973 12214065 Sorghum bicolor 4558 AAG|GTAGCTCTTT...TCATCCATGAGT/TGCAAATTTACA...TACAG|AAA 0 1 32.661
187538109 GT-AG 0 1.000000099473604e-05 135 rna-XM_021464455.1 33469688 10 12213226 12213360 Sorghum bicolor 4558 GTG|GTAAGTCTCT...CAAGCATTAGTA/TACTAGTTAACC...TGCAG|GAC 0 1 42.86
187538110 GT-AG 0 1.000000099473604e-05 66 rna-XM_021464455.1 33469688 11 12213067 12213132 Sorghum bicolor 4558 GTG|GTGGGCACCG...GTACTCCTACCT/CTACTGCTGATG...TTCAG|GAT 0 1 44.409
187538111 GT-AG 0 5.372389077718316e-05 2142 rna-XM_021464455.1 33469688 12 12210884 12213025 Sorghum bicolor 4558 ATG|GTTGACCAGG...GCTTCCTTGACC/GCTTCCTTGACC...GAAAG|TCC 2 1 45.092
187558112 GT-AG 0 1.000000099473604e-05 953 rna-XM_021464455.1 33469688 1 12219412 12220364 Sorghum bicolor 4558 CAG|GTGAGTGGCC...GCTGTTTTGATC/GCTGTTTTGATC...TGCAG|GAG   0 5.116

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