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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
146835958 GT-AG 0 1.000000099473604e-05 71 Pavag01G469700.1.v3.1 26505193 1 50523447 50523517 Paspalum vaginatum 158149 GAG|GTTAGTTCTT...CTTTCTTTTGCT/CATTTTCTAACT...TGCAG|CTT 0 1 51.859
146835959 GT-AG 0 1.000000099473604e-05 92 Pavag01G469700.1.v3.1 26505193 2 50523647 50523738 Paspalum vaginatum 158149 CAA|GTTCGTACGC...CATTGCTTAACT/TTTTTGTTCATT...TGTAG|CAC 0 1 54.568
146835960 GT-AG 0 0.0002575178590338 93 Pavag01G469700.1.v3.1 26505193 3 50523928 50524020 Paspalum vaginatum 158149 AAG|GTGGCCCTGA...CTTTTCTTGTTA/ACGCTTCTGAAT...CCTAG|GAA 0 1 58.538
146835961 GT-AG 0 1.616214233869581e-05 1363 Pavag01G469700.1.v3.1 26505193 4 50524089 50525451 Paspalum vaginatum 158149 GCT|GTAAGTGATT...TGTTCATTATTT/ATATTGTTCATT...TGCAG|TCA 2 1 59.966
146835962 GT-AG 0 1.000000099473604e-05 88 Pavag01G469700.1.v3.1 26505193 5 50525991 50526078 Paspalum vaginatum 158149 AAG|GTTGTTGCTT...TACGTTTTATAT/TATCTGTTTACT...TGCAG|GTG 1 1 71.288
146835963 GT-AG 0 0.0183455518014598 683 Pavag01G469700.1.v3.1 26505193 6 50526298 50526980 Paspalum vaginatum 158149 AAG|GTAGCTGTTC...ATTCCTTTGACA/TATTTGTTTATG...TCCAG|TTG 1 1 75.887
146835964 GT-AG 0 4.983837754672151 538 Pavag01G469700.1.v3.1 26505193 7 50527080 50527617 Paspalum vaginatum 158149 TCG|GTACCCTTTT...CATTTCTGATTC/TCATTTCTGATT...TCAAG|GTT 1 1 77.967
146835965 GT-AG 0 1.000000099473604e-05 82 Pavag01G469700.1.v3.1 26505193 8 50527734 50527815 Paspalum vaginatum 158149 CAG|GTGAGCATAG...TTACCTGTAACG/GCTTTGTTTACC...CGCAG|TCA 0 1 80.403
146835966 GT-AG 0 1.0420633664951055e-05 180 Pavag01G469700.1.v3.1 26505193 9 50528026 50528205 Paspalum vaginatum 158149 GAG|GTAAATTAGT...TTGTTGTTGACT/TTGTTGTTGACT...TACAG|GGA 0 1 84.814
146835967 GT-AG 0 1.000000099473604e-05 134 Pavag01G469700.1.v3.1 26505193 10 50528479 50528612 Paspalum vaginatum 158149 AAG|GTTAGTTTTC...GTTCCGCTAACT/TATATACTGAGT...TTCAG|ATG 0 1 90.548
146835968 GT-AG 0 5.293055745357302e-05 304 Pavag01G469700.1.v3.1 26505193 11 50528761 50529064 Paspalum vaginatum 158149 TTG|GTAAGCATTT...GTCTCTCTAGTT/CATTTACTGACA...TTCAG|TTT 1 1 93.657
146835969 GT-AG 0 0.0007858998565718 963 Pavag01G469700.1.v3.1 26505193 12 50529199 50530161 Paspalum vaginatum 158149 GTG|GTATGCCCAC...TTGCTTTTGGCA/ATATATCTCATT...TGCAG|GTT 0 1 96.471
146835970 GT-AG 0 5.443162229441118e-05 90 Pavag01G469700.1.v3.1 26505193 13 50530243 50530332 Paspalum vaginatum 158149 AAG|GTAACTCAAT...TTTTCCTACACT/CTTAGTGTGACC...TGCAG|GTT 0 1 98.173

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