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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
146836150 GT-AG 0 0.0004493407550249 734 Pavag01G433500.1.v3.1 26505207 1 47774483 47775216 Paspalum vaginatum 158149 GAT|GTAAGCCCCG...GTTCTTTTAATA/GTTCTTTTAATA...TACAG|TGG 0 1 3.656
146836151 GT-AG 0 1.864591619053078e-05 483 Pavag01G433500.1.v3.1 26505207 2 47773830 47774312 Paspalum vaginatum 158149 ATG|GTAAACCACT...CATGCCATACTT/TTGCAAATCATT...CCCAG|GGA 2 1 7.493
146836152 GT-AG 0 1.000000099473604e-05 1774 Pavag01G433500.1.v3.1 26505207 3 47771929 47773702 Paspalum vaginatum 158149 GAG|GTAAGGATAT...ACTGACTTACCT/CCTACACTGACT...GCCAG|TTG 0 1 10.359
146836153 GT-AG 0 1.4735761455849756 89 Pavag01G433500.1.v3.1 26505207 4 47771577 47771665 Paspalum vaginatum 158149 CAG|GTATCCACTG...TTATTTTTATAT/CTTATTTTTATA...TTCAG|GTG 2 1 16.294
146836154 GT-AG 0 1.000000099473604e-05 76 Pavag01G433500.1.v3.1 26505207 5 47769868 47769943 Paspalum vaginatum 158149 GAG|GTAGGTAACA...CTTTTTTTATAT/TCTTTTTTTATA...AACAG|GTG 0 1 53.148
146836155 GT-AG 0 1.000000099473604e-05 123 Pavag01G433500.1.v3.1 26505207 6 47769532 47769654 Paspalum vaginatum 158149 GAG|GTAGTACTGT...AATTTCTCAACT/CTGAGTCTCACT...TGCAG|TAT 0 1 57.955
146836156 GT-AG 0 1.000000099473604e-05 378 Pavag01G433500.1.v3.1 26505207 7 47768906 47769283 Paspalum vaginatum 158149 AAG|GTTAGTCATT...TATTTTTTATCG/ATATTTTTTATC...TTCAG|ATA 2 1 63.552
146836157 GT-AG 0 0.0007516288992445 570 Pavag01G433500.1.v3.1 26505207 8 47767924 47768493 Paspalum vaginatum 158149 GAG|GTGTGCCCTA...TTTTTCTTGACT/TTTTTCTTGACT...ATAAG|GTC 0 1 72.85
146836158 GT-AG 0 0.0008007394828447 87 Pavag01G433500.1.v3.1 26505207 9 47767631 47767717 Paspalum vaginatum 158149 AAG|GTATTTAGAT...TAATTTTTATCA/ATTTTTATCATT...TCCAG|GTA 2 1 77.499
146836159 GT-AG 0 0.0005421493289336 3192 Pavag01G433500.1.v3.1 26505207 10 47764093 47767284 Paspalum vaginatum 158149 GAG|GTATGGTTTT...GATTTCTTGCTA/TTCTTGCTAAAA...GTTAG|GTT 0 1 85.308
146836160 GT-AG 0 1.000000099473604e-05 98 Pavag01G433500.1.v3.1 26505207 11 47763776 47763873 Paspalum vaginatum 158149 TTG|GTAATGTTTA...GTACTCATATTA/TTGGTACTCATA...TACAG|GAT 0 1 90.251
146836161 GC-AG 0 1.000000099473604e-05 192 Pavag01G433500.1.v3.1 26505207 12 47763255 47763446 Paspalum vaginatum 158149 CAG|GCAAGTTTAT...ATTCTCTTACAT/CATTCTCTTACA...TTCAG|GTA 2 1 97.675

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