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

✎ 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
114868964 GT-AG 0 1.000000099473604e-05 3918 rna-XM_025346909.1 21325383 1 9181330 9185247 Melanaphis sacchari 742174 GAG|GTAATAGCAA...AATTGTTTACTA/TGTTTACTAATT...TTCAG|ATT 1 1 1.627
114868965 GT-AG 0 0.0002680083934483 4498 rna-XM_025346909.1 21325383 2 9185391 9189888 Melanaphis sacchari 742174 AAG|GTAAATTTTA...TTTCTTTTAATT/TTTCTTTTAATT...TAAAG|GAA 0 1 4.464
114868966 GT-AG 0 1.000000099473604e-05 65 rna-XM_025346909.1 21325383 3 9189907 9189971 Melanaphis sacchari 742174 CAG|GTTTGAATAA...AAATTTTTATCC/TAAATTTTTATC...TTAAG|GAA 0 1 4.821
114868967 GT-AG 0 1.000000099473604e-05 80 rna-XM_025346909.1 21325383 4 9190147 9190226 Melanaphis sacchari 742174 TAA|GTAAGTAAAG...GCTGTTTTAAAT/TTTTAAATTATT...TATAG|ACG 1 1 8.294
114868968 GT-AG 0 1.0712717783619089e-05 67 rna-XM_025346909.1 21325383 5 9190301 9190367 Melanaphis sacchari 742174 AGA|GTAATATCAA...ACTTTTTTATTT/TACTTTTTTATT...TTTAG|GTT 0 1 9.762
114868969 GT-AG 0 1.3796609371049322e-05 69 rna-XM_025346909.1 21325383 6 9190590 9190658 Melanaphis sacchari 742174 TGT|GTAAGTATAA...AGCACGTTAATA/TCTGTACTCAGC...TTTAG|GGT 0 1 14.167
114868970 GT-AG 0 1.000000099473604e-05 602 rna-XM_025346909.1 21325383 7 9190793 9191394 Melanaphis sacchari 742174 TAC|GTAAGTAATA...ATTTTTCTGACT/ATTTTTCTGACT...TTTAG|AGA 2 1 16.825
114868971 GT-AG 0 5.90535216736361e-05 133 rna-XM_025346909.1 21325383 8 9191579 9191711 Melanaphis sacchari 742174 AAA|GTAAATATTA...AAACCTTTATTG/CAATTATTAAAC...TATAG|GTT 0 1 20.476
114868972 GT-AG 0 0.0019281204589019 64 rna-XM_025346909.1 21325383 9 9191888 9191951 Melanaphis sacchari 742174 AAT|GTAAATTATA...ATTATTTTAACT/ATTATTTTAACT...TCTAG|ATA 2 1 23.968
114868973 GT-AG 0 1.000000099473604e-05 66 rna-XM_025346909.1 21325383 10 9195079 9195144 Melanaphis sacchari 742174 TCA|GTCAGTAGAC...TTTTTCTTAAAA/TTTTTTCTTAAA...TTTAG|GGT 0 1 86.012
114868974 GT-AG 0 0.0002826498500267 71 rna-XM_025346909.1 21325383 11 9195290 9195360 Melanaphis sacchari 742174 GTG|GTATGTGTAT...AAATATTTGATA/AAATATTTGATA...TTAAG|ATT 1 1 88.889
114868975 GT-AG 0 1.000000099473604e-05 76 rna-XM_025346909.1 21325383 12 9195475 9195550 Melanaphis sacchari 742174 CAG|GTAAATTCCT...TATATTTTTTCA/TGTATATTAAGA...TACAG|CTT 1 1 91.151
114868976 GT-AG 0 0.0021019058951062 78 rna-XM_025346909.1 21325383 13 9195707 9195784 Melanaphis sacchari 742174 TAA|GTATGGAACA...TTTACCTTAATT/CCTAATCTAACC...TTTAG|TTG 1 1 94.246

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