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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, 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
45169323 GT-AG 0 5.491208652192316e-05 944 rna-XM_004488055.3 8392245 2 24074370 24075313 Cicer arietinum 3827 AAG|GTGTGTTTTC...TTTAACTTGATT/TTTAACTTGATT...TACAG|GCG 1 1 10.367
45169324 GT-AG 0 0.018980091375666 81 rna-XM_004488055.3 8392245 3 24074176 24074256 Cicer arietinum 3827 CAA|GTATGTTTCG...TTCTTTCTAACT/TTCTTTCTAACT...TTTAG|GTT 0 1 13.418
45169325 GT-AG 0 6.524833386545883e-05 719 rna-XM_004488055.3 8392245 4 24073361 24074079 Cicer arietinum 3827 CAT|GTAGGTTCAC...TATTTCATAGTG/CATATATTCATA...ATCAG|GCC 0 1 16.01
45169326 GT-AG 0 1.000000099473604e-05 123 rna-XM_004488055.3 8392245 5 24073181 24073303 Cicer arietinum 3827 AAA|GTAGGTCAGC...TATAACTTAACA/GTTGGATTTACC...TACAG|TAT 0 1 17.549
45169327 GT-AG 0 1.000000099473604e-05 88 rna-XM_004488055.3 8392245 6 24072937 24073024 Cicer arietinum 3827 CTG|GTGTGTATAC...TATTTCTATGCT/TCTATGCTGACC...GATAG|GAC 0 1 21.76
45169328 GT-AG 0 9.375150748718067e-05 96 rna-XM_004488055.3 8392245 7 24072756 24072851 Cicer arietinum 3827 GCG|GTATTGCGAA...ATCGTTTTGATT/ATCGTTTTGATT...CACAG|GAC 1 1 24.055
45169329 GT-AG 0 1.000000099473604e-05 86 rna-XM_004488055.3 8392245 8 24072579 24072664 Cicer arietinum 3827 CAG|GTAAGAAATA...ACATTGTTGATA/CAGTTTTTCACA...TTTAG|AGA 2 1 26.512
45169330 GT-AG 0 7.531528976272516e-05 95 rna-XM_004488055.3 8392245 9 24072319 24072413 Cicer arietinum 3827 GAG|GTACTATTTG...TTTTTTGTGACG/TTTTTTGTGACG...AACAG|GAC 2 1 30.967
45169331 GT-AG 0 1.5731661639091465e-05 337 rna-XM_004488055.3 8392245 10 24071786 24072122 Cicer arietinum 3827 CAG|GTATTAACAA...CATGTTTTAAAT/CATGTTTTAAAT...GATAG|GTT 0 1 36.258
45169332 GT-AG 0 1.000000099473604e-05 194 rna-XM_004488055.3 8392245 11 24071453 24071646 Cicer arietinum 3827 CAG|GTAGGAAGAG...CATCCCTTGAAC/TTGCAATTGATT...TGCAG|AAG 1 1 40.011
45169333 GT-AG 0 0.0005033594551638 388 rna-XM_004488055.3 8392245 12 24069215 24069602 Cicer arietinum 3827 AAG|GTTTGTTATT...TACTTCTTAACA/TACTTCTTAACA...TGAAG|GTG 0 1 89.957
45169334 GT-AG 0 2.4282149558676684e-05 103 rna-XM_004488055.3 8392245 13 24068921 24069023 Cicer arietinum 3827 GGA|GTAAGTACTT...TCGATTTTATCT/TATGAACTCATA...TGTAG|AGA 2 1 95.113
45180635 GT-AG 0 1.000000099473604e-05 111 rna-XM_004488055.3 8392245 1 24075879 24075989 Cicer arietinum 3827 AAG|GTGATTCCTT...TTTTTTTTGAAG/TGAATTTTGATT...CACAG|ATT   0 9.206

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