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

✎ 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
187538994 GT-AG 0 1.000000099473604e-05 1175 rna-XM_021445663.1 33469753 1 66180970 66182144 Sorghum bicolor 4558 ATT|GTGAGTACCC...GCATTCTTGTCT/TCTTGTCTAAGA...TCCAG|GAT 0 1 3.245
187538995 GT-AG 0 1.000000099473604e-05 81 rna-XM_021445663.1 33469753 2 66182218 66182298 Sorghum bicolor 4558 TTG|GTAAAGGGCT...TTTCATTTGATG/TTTCATTTGATG...GACAG|GGT 1 1 4.561
187538996 GT-AG 0 0.0001157861183193 93 rna-XM_021445663.1 33469753 3 66182430 66182522 Sorghum bicolor 4558 GAG|GTTTTTATTG...AATGTCATGATT/TCATGATTTACT...TGCAG|AGA 0 1 6.923
187538997 GT-AG 0 1.000000099473604e-05 95 rna-XM_021445663.1 33469753 4 66182874 66182968 Sorghum bicolor 4558 CAG|GTGAATTATT...AAAGCCGTAACT/TTCTGCATCATA...TTCAG|GTC 0 1 13.25
187538998 GT-AG 0 9.507701688323428e-05 443 rna-XM_021445663.1 33469753 5 66183556 66183998 Sorghum bicolor 4558 GCT|GTAAGTTCAA...TTTCCATTACTA/CCATTACTAAAA...TGCAG|GCC 2 1 23.833
187538999 GT-AG 0 1.000000099473604e-05 129 rna-XM_021445663.1 33469753 6 66184430 66184558 Sorghum bicolor 4558 AAG|GTTCTTCCCT...CTTCCATTATCC/CATAATTTCATT...CCCAG|GAG 1 1 31.603
187539000 GT-AG 0 1.000000099473604e-05 99 rna-XM_021445663.1 33469753 7 66186151 66186249 Sorghum bicolor 4558 AAG|GTTGTTCATC...TTTTCCTTACAA/CTTTTCCTTACA...TGCAG|AAT 0 1 60.303
187539001 GT-AG 0 0.005238977270302 379 rna-XM_021445663.1 33469753 8 66186411 66186789 Sorghum bicolor 4558 CAA|GTAAGCTATA...GGTTCTTTAATT/GTTGTTCTAAGT...GCCAG|TTT 2 1 63.205
187539002 GT-AG 0 1.000000099473604e-05 1053 rna-XM_021445663.1 33469753 9 66186948 66188000 Sorghum bicolor 4558 GAG|GTACTTGATG...TTGCATTTAATG/TTTGCATTTAAT...TGTAG|GTG 1 1 66.054
187539003 GT-AG 0 1.000000099473604e-05 1005 rna-XM_021445663.1 33469753 10 66188162 66189166 Sorghum bicolor 4558 TAC|GTGAGTACCT...TCTCTTTTGATT/TATATATTGATT...TTTAG|ACA 0 1 68.956
187558166 GT-AG 0 0.0089263360160914 684 rna-XM_021445663.1 33469753 11 66189973 66190656 Sorghum bicolor 4558 CAG|GTATTTTTCA...CATCTGTTAGTT/ATTCTACTGATT...CCCAG|GTT   0 83.487
187558167 GT-AG 0 1.3870706586596371e-05 78 rna-XM_021445663.1 33469753 12 66190769 66190846 Sorghum bicolor 4558 CAT|GTAATTGTTC...GACTTTTGGATT/TTGGATTTCACA...TGTAG|CGA   0 85.506

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