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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, 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
146835684 GT-AG 0 0.0003749397935373 500 Pavag01G472100.1.v3.1 26505179 1 50736071 50736570 Paspalum vaginatum 158149 AAG|GTGTGTTTTT...CCTCTCTTAAAA/TTAAAATTAATC...TTCAG|TTA 0 1 3.011
146835685 GT-AG 0 1.000000099473604e-05 535 Pavag01G472100.1.v3.1 26505179 2 50734514 50735048 Paspalum vaginatum 158149 AAG|GTTTGTCTCT...CTGTTCTAATTA/ACTGTTCTAATT...GACAG|CAT 2 1 19.553
146835686 GT-AG 0 0.0322410191046189 907 Pavag01G472100.1.v3.1 26505179 3 50733458 50734364 Paspalum vaginatum 158149 AAG|GTATTCATCT...TTTTCCTTTCCT/AATTGTTTTACT...AACAG|AAC 1 1 21.965
146835687 GT-AG 0 0.0011141543727377 128 Pavag01G472100.1.v3.1 26505179 4 50733076 50733203 Paspalum vaginatum 158149 CAG|GTATTTATTT...GTAATCATATTG/CATATTGTCATA...TACAG|ACA 0 1 26.076
146835688 GT-AG 0 0.0012132084998563 85 Pavag01G472100.1.v3.1 26505179 5 50730012 50730096 Paspalum vaginatum 158149 CTG|GTATGTCTAT...CTTACTTTAGTC/ATTATTTTCATC...AAAAG|GTT 0 1 74.296
146835689 GT-AG 0 1.000000099473604e-05 554 Pavag01G472100.1.v3.1 26505179 6 50729345 50729898 Paspalum vaginatum 158149 CAG|GTAAACGAAG...TTGATTTTATTG/ATTGATTTTATT...TGCAG|GTT 2 1 76.125
146835690 GT-AG 0 0.0003751427347356 573 Pavag01G472100.1.v3.1 26505179 7 50728579 50729151 Paspalum vaginatum 158149 CAG|GTACTTTTAA...AATGTCGTGATC/CGTGATCTGATT...GACAG|AAA 0 1 79.249
146835691 GT-AG 0 1.8375764844698287e-05 91 Pavag01G472100.1.v3.1 26505179 8 50728374 50728464 Paspalum vaginatum 158149 AAG|GTAAGTTTTT...ACAACCTTGAGG/TTATGTATGACA...AACAG|GGA 0 1 81.094
146835692 GT-AG 0 1.000000099473604e-05 233 Pavag01G472100.1.v3.1 26505179 9 50728033 50728265 Paspalum vaginatum 158149 CAG|GTCCTTATCT...CTTGATTTACTA/GATTTACTAATA...TTTAG|GTC 0 1 82.842
146835693 GT-AG 0 1.000000099473604e-05 130 Pavag01G472100.1.v3.1 26505179 10 50727770 50727899 Paspalum vaginatum 158149 GAG|GTAAGATAGA...GATTTCTTATTT/TGATTTCTTATT...GGCAG|GCG 1 1 84.995
146835694 GT-AG 0 1.000000099473604e-05 210 Pavag01G472100.1.v3.1 26505179 11 50727354 50727563 Paspalum vaginatum 158149 CAG|GTAATGAATT...AGTGCTTTAGTA/TAGTATTTAACT...TTCAG|GCA 0 1 88.33
146835695 GT-AG 0 1.000000099473604e-05 545 Pavag01G472100.1.v3.1 26505179 12 50726612 50727156 Paspalum vaginatum 158149 CAG|GTCAAGTTTT...ATATTTTTTCCA/CTGCTATTTATG...TGCAG|CCT 2 1 91.518
146855250 GT-AG 0 0.0002681260531282 91 Pavag01G472100.1.v3.1 26505179 13 50726318 50726408 Paspalum vaginatum 158149 AGT|GTAAGCCAGA...GACGTTTTGATT/GACGTTTTGATT...CGCAG|GTT   0 94.804

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