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

✎ 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
146836043 GT-AG 0 1.000000099473604e-05 1199 Pavag01G049700.1.v3.1 26505199 3 3604149 3605347 Paspalum vaginatum 158149 CAG|GTACAGGTCT...GTTTTTTTACCG/CTGTTGCTCATC...TTCAG|GAA 1 1 6.022
146836044 GT-AG 0 4.770155485641393e-05 188 Pavag01G049700.1.v3.1 26505199 4 3602514 3602701 Paspalum vaginatum 158149 TTG|GTAAATACCC...TGATCCTTGATG/CTTCTTTTTAGC...TCCAG|GTA 2 1 35.969
146836045 GT-AG 0 0.0017760509477929 131 Pavag01G049700.1.v3.1 26505199 5 3600900 3601030 Paspalum vaginatum 158149 GAG|GTTCACTTGT...TCTGTCTTAAAT/AGTTCTCTCATT...TCCAG|GTA 0 1 66.66
146836046 GT-AG 0 1.000000099473604e-05 99 Pavag01G049700.1.v3.1 26505199 6 3600636 3600734 Paspalum vaginatum 158149 CAG|GTCAGGCATT...ACATTGTTAACT/ACATTGTTAACT...ATCAG|CTT 0 1 70.075
146836047 GT-AG 0 0.0034407364728437 90 Pavag01G049700.1.v3.1 26505199 7 3600350 3600439 Paspalum vaginatum 158149 CTG|GTATGTATTT...AAAACTTTGACT/CAATTGTTTATT...TGTAG|GAG 1 1 74.131
146836048 GT-AG 0 0.0165570462188697 77 Pavag01G049700.1.v3.1 26505199 8 3600161 3600237 Paspalum vaginatum 158149 GAA|GTATGCACCC...TGTACCTTAAGC/GATTTGCTTATT...TGCAG|GGC 2 1 76.449
146836049 GT-AG 0 4.4864260661702064e-05 92 Pavag01G049700.1.v3.1 26505199 9 3599921 3600012 Paspalum vaginatum 158149 CAG|GTTTGTTGTT...ATCTTCTAAACA/AATCTTCTAAAC...TGCAG|GGG 0 1 79.512
146836050 GT-AG 0 1.000000099473604e-05 88 Pavag01G049700.1.v3.1 26505199 10 3599635 3599722 Paspalum vaginatum 158149 CAG|GTGCTTGCCT...TGCACCTTAGTG/TCAACACTGAAT...CTCAG|GTC 0 1 83.609
146836051 GT-AG 0 4.903079433950252e-05 102 Pavag01G049700.1.v3.1 26505199 11 3599254 3599355 Paspalum vaginatum 158149 CAG|GTAAGCGTCA...GTTCTCTTGATC/GCTGGATTTACT...TGCAG|TAC 0 1 89.383
146836052 GT-AG 0 1.848492831878456e-05 117 Pavag01G049700.1.v3.1 26505199 12 3598975 3599091 Paspalum vaginatum 158149 AAG|GTAGCTGCAT...TTCTCATGGATG/AAACTTCTCATG...CGCAG|GTG 0 1 92.736
146836053 GT-AG 0 0.000363313108267 163 Pavag01G049700.1.v3.1 26505199 13 3598593 3598755 Paspalum vaginatum 158149 CAG|GTAACTAATA...TTTCTCTGAACC/CCTGTCCTCACG...TGCAG|GGC 0 1 97.268
146855260 GT-AG 0 8.021016755130624e-05 464 Pavag01G049700.1.v3.1 26505199 1 3606554 3607017 Paspalum vaginatum 158149 TGA|GTGCGTTGCC...TCCGTTTTGACA/TCCGTTTTGACA...CGCAG|GAA   0 4.098
146855261 GT-AG 0 1.0598025233393285 1106 Pavag01G049700.1.v3.1 26505199 2 3605389 3606494 Paspalum vaginatum 158149 CTG|GTATCTCATT...TGTCTTTTGACA/ATTTGCTTGACT...TGCAG|AGG   0 5.319

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