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

✎ 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
55681122 GT-AG 0 1.2227195874252812e-05 422 rna-XM_023658490.1 10143819 1 7284086 7284507 Cucurbita pepo 3663 AAG|GTAATTATTC...TGTTTCTTACAG/TTGTTTCTTACA...GGTAG|TTT 0 1 8.916
55681123 GT-AG 0 1.000000099473604e-05 1109 rna-XM_023658490.1 10143819 2 7282887 7283995 Cucurbita pepo 3663 GAG|GTTAGTTTTC...TTTTTTTTAATC/TTTTTTTTAATC...TGTAG|GGA 0 1 10.84
55681124 GT-AG 0 0.0002380706879963 602 rna-XM_023658490.1 10143819 3 7282222 7282823 Cucurbita pepo 3663 CAG|GTATATGGCA...TGATTTTTGAAA/ATCTTGTTGATT...TGCAG|AGC 0 1 12.187
55681125 GT-AG 0 2.6223761611223906e-05 79 rna-XM_023658490.1 10143819 4 7282056 7282134 Cucurbita pepo 3663 CAG|GTATGACATG...CTTTTCTTGCCT/CTACCATTAATC...TGCAG|ATG 0 1 14.047
55681126 GT-AG 0 0.0547207193975425 83 rna-XM_023658490.1 10143819 5 7281820 7281902 Cucurbita pepo 3663 GAG|GTTGCCTGTC...TTTCTCTTATCT/ATTTCTCTTATC...ACCAG|GTT 0 1 17.319
55681127 GT-AG 0 0.7574465809569042 653 rna-XM_023658490.1 10143819 6 7281009 7281661 Cucurbita pepo 3663 GAG|GTATACTTAA...ATTCTTTTAATC/ATTCTTTTAATC...TTCAG|ATT 2 1 20.697
55681128 GT-AG 0 1.000000099473604e-05 274 rna-XM_023658490.1 10143819 7 7280500 7280773 Cucurbita pepo 3663 AAG|GTTAGTTTCT...TCTTCCTTTTTT/AATGTATTTATC...TTTAG|CTG 0 1 25.722
55681129 GT-AG 0 1.000000099473604e-05 1069 rna-XM_023658490.1 10143819 8 7279320 7280388 Cucurbita pepo 3663 AAG|GTCTGTGAAA...TCCTTTTTGGCT/ATAATTTTAAGC...TGCAG|CTC 0 1 28.095
55681130 GT-AG 0 1.000000099473604e-05 120 rna-XM_023658490.1 10143819 9 7278141 7278260 Cucurbita pepo 3663 CAG|GTTAAACTTT...TGTATATTATCA/TATATGTTCATT...TTCAG|GTC 0 1 50.738
55681131 GT-AG 0 2.393009772334746e-05 1162 rna-XM_023658490.1 10143819 10 7276718 7277879 Cucurbita pepo 3663 CAG|GTTCTTTTTC...CTAACCTTGTTT/ACCTTGTTTACT...TATAG|GTT 0 1 56.318
55681132 GT-AG 0 1.000000099473604e-05 203 rna-XM_023658490.1 10143819 11 7276329 7276531 Cucurbita pepo 3663 GAG|GTAAATGAAG...TTTTTCTGACCT/CTTTTTCTGACC...CTCAG|AGA 0 1 60.295
55681133 GT-AG 0 0.0605798285570596 552 rna-XM_023658490.1 10143819 12 7274622 7275173 Cucurbita pepo 3663 AAG|GTATCTCCAA...AATCACTTAATT/TCTTGTTTGATA...TCTAG|GTG 0 1 84.99
55681134 GT-AG 0 7.840862441012152e-05 221 rna-XM_023658490.1 10143819 13 7274062 7274282 Cucurbita pepo 3663 CAG|GTATTATCAC...TGTGTGTTAGTC/TCTTATGTAATT...TGCAG|ATT 0 1 92.239

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