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)

11 rows where transcript_id = 26505187

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, is_minor, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
146835844 GT-AG 0 1.000000099473604e-05 121 Pavag01G178700.1.v3.1 26505187 1 13985147 13985267 Paspalum vaginatum 158149 GAG|GTGCGTGCGC...TAGTACTCGATT/CCGTTGCTGATC...TTCAG|GGG 2 1 8.717
146835845 GT-AG 0 1.1682754984934782e-05 627 Pavag01G178700.1.v3.1 26505187 2 13984440 13985066 Paspalum vaginatum 158149 GTG|GTGAGCTATT...TATTTCTTGATG/TATTTCTTGATG...GCCAG|GTT 1 1 10.27
146835846 GT-AG 0 0.0086328315333236 732 Pavag01G178700.1.v3.1 26505187 3 13983526 13984257 Paspalum vaginatum 158149 AAG|GTACCCAACT...GTCATCCTATTT/TCCTATTTCATT...TTCAG|GTT 0 1 13.803
146835847 GT-AG 0 1.000000099473604e-05 77 Pavag01G178700.1.v3.1 26505187 4 13982494 13982570 Paspalum vaginatum 158149 TTG|GTAAGGTTAC...TAGACCTGAGCT/TAAATACTTATA...TGCAG|GTA 1 1 32.343
146835848 GT-AG 0 1.000000099473604e-05 999 Pavag01G178700.1.v3.1 26505187 5 13981367 13982365 Paspalum vaginatum 158149 GAG|GTACAAAAAT...CTTCCCTCAACT/GAATAGTTTATT...TGTAG|GAG 0 1 34.828
146835849 GT-AG 0 0.0006167047683128 222 Pavag01G178700.1.v3.1 26505187 6 13981085 13981306 Paspalum vaginatum 158149 GTG|GTACTTCTGT...CTTTCCTTTTCA/CATAGTCTGATA...ATCAG|GGA 0 1 35.993
146835850 GT-AG 0 1.000000099473604e-05 88 Pavag01G178700.1.v3.1 26505187 7 13980946 13981033 Paspalum vaginatum 158149 GAT|GTAAGAAAAA...TTACCTTTACTT/CCTTTACTTATA...ACCAG|TGG 0 1 36.983
146835851 AT-AC 1 99.99999999973078 1391 Pavag01G178700.1.v3.1 26505187 8 13979484 13980874 Paspalum vaginatum 158149 GGA|ATATCCTTTT...TGGTCCTTAACT/AGTATATTTATG...CATAC|ATT 2 1 38.361
146835852 GT-AG 0 1.000000099473604e-05 93 Pavag01G178700.1.v3.1 26505187 9 13979245 13979337 Paspalum vaginatum 158149 CTG|GTACTAAATT...GCGAACTTAGCT/CTTTTGCGAACT...TGCAG|TTG 1 1 41.196
146835853 GT-AG 0 1.000000099473604e-05 80 Pavag01G178700.1.v3.1 26505187 10 13977242 13977321 Paspalum vaginatum 158149 CAG|GTTAAGAAAA...GCTTCCTTAAAC/CAACTATTTATC...TACAG|GTC 1 1 78.528
146835854 GT-AG 0 1.000000099473604e-05 118 Pavag01G178700.1.v3.1 26505187 11 13976966 13977083 Paspalum vaginatum 158149 CAG|GTAATGCTAT...AAAAACTTAGTA/AGAGTTCTAACT...TTTAG|GTA 0 1 81.596

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