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)

12 rows where transcript_id = 7347028

✎ 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
38394199 GT-AG 0 0.0006265930213499 625 Ceric.01G025500.1.v2.1 7347028 1 66808914 66809538 Ceratopteris richardii 49495 CGT|GTAAGCCTTT...ATTTTCTAATTT/CATTTTCTAATT...CACAG|GTG 0 1 3.439
38394200 GT-AG 0 1.000000099473604e-05 82 Ceric.01G025500.1.v2.1 7347028 2 66809576 66809657 Ceratopteris richardii 49495 GAG|GTAAATCAAT...TTAGCTTGAATT/TTTCGTTTCATG...TCCAG|CAT 1 1 5.071
38394201 GT-AG 0 0.0165555202525007 74 Ceric.01G025500.1.v2.1 7347028 3 66809836 66809909 Ceratopteris richardii 49495 GAG|GTATGCTGAA...AATTCTTTGGCT/ATGAAATTGACA...GCCAG|ACG 2 1 12.919
38394202 GT-AG 0 0.0138666349889859 33054 Ceric.01G025500.1.v2.1 7347028 4 66809989 66843042 Ceratopteris richardii 49495 CAG|GTACGCTTGG...ATAATCTTGACA/TTATTTTTTATT...TGCAG|AGA 0 1 16.402
38394203 GT-AG 0 0.0002883826420404 66 Ceric.01G025500.1.v2.1 7347028 5 66843088 66843153 Ceratopteris richardii 49495 AAG|GTACATTCTA...AAGATGTTAATT/AAGATGTTAATT...CACAG|ATT 0 1 18.386
38394204 GT-AG 0 3.4145997409490096e-05 132 Ceric.01G025500.1.v2.1 7347028 6 66843304 66843435 Ceratopteris richardii 49495 GTG|GTAAGTATAC...ATTCCCTTAACC/AGTTCTCTAAAT...CATAG|GTC 0 1 25.0
38394205 GT-AG 0 1.000000099473604e-05 40034 Ceric.01G025500.1.v2.1 7347028 7 66843569 66883602 Ceratopteris richardii 49495 CAG|GTAAGAATGG...AGAGAGAGAGAG/GAGAGAGAGAGA...AGCAG|GAA 1 1 30.864
38394206 GT-AG 0 1.000000099473604e-05 9134 Ceric.01G025500.1.v2.1 7347028 8 66883704 66892837 Ceratopteris richardii 49495 CGG|GTAAGCTCAA...GATATCTGGAGA/AGTAACTTCAGG...TGCAG|GTC 0 1 35.317
38394207 GT-AG 0 1.000000099473604e-05 260 Ceric.01G025500.1.v2.1 7347028 9 66892936 66893195 Ceratopteris richardii 49495 AAT|GTAAAGGACC...GTTGCGGTATTG/TGAGTGCTGACA...TGCAG|ATA 2 1 39.638
38394208 GT-AG 1 99.15164141494157 597 Ceric.01G025500.1.v2.1 7347028 10 66893289 66893885 Ceratopteris richardii 49495 ACC|GTATCCTATA...GTTTTCTTAATG/AGTTTTCTTAAT...TTCAG|TGA 2 1 43.739
38394209 GC-AG 0 1.000000099473604e-05 142 Ceric.01G025500.1.v2.1 7347028 11 66894109 66894250 Ceratopteris richardii 49495 AAG|GCATGTGTCA...TTTTTCTTAATT/TTTTTCTTAATT...TGCAG|GAA 0 1 53.571
38394210 GT-AG 0 1.1884465258771906e-05 81 Ceric.01G025500.1.v2.1 7347028 12 66894342 66894422 Ceratopteris richardii 49495 ACC|GTAAGTCAAG...CTGCTCTAAATC/CCTGCTCTAAAT...TACAG|CTA 1 1 57.584

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