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)

14 rows where transcript_id = 3682517

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, 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
18434061 GT-AG 0 1.000000099473604e-05 392 rna-XM_033784855.1 3682517 2 19873728 19874119 Asterias rubens 7604 CAG|GTTAGGATTA...GTCACTTTATTC/TTTATTCTGATT...AACAG|ATG 0 1 1.508
18434062 GT-AG 0 1.0199141749989976e-05 410 rna-XM_033784855.1 3682517 3 19873111 19873520 Asterias rubens 7604 CAG|GTAAGTTGTG...ATTTTCTTGTCT/TACATTCTAATA...TGTAG|ATA 0 1 3.168
18434063 GT-AG 0 0.0001814449917362 523 rna-XM_033784855.1 3682517 4 19872368 19872890 Asterias rubens 7604 CCG|GTATGGATGT...AATTACTTAACA/TTTTGTTTCATT...TAAAG|TGA 1 1 4.932
18434064 GT-AG 0 1.000000099473604e-05 453 rna-XM_033784855.1 3682517 5 19871793 19872245 Asterias rubens 7604 AAG|GTGAGACAAG...GGTTTTTTATTT/TTTTATTTTATT...AACAG|AGC 0 1 5.91
18434065 GT-AG 0 1.000000099473604e-05 804 rna-XM_033784855.1 3682517 6 19870823 19871626 Asterias rubens 7604 AAG|GTGAGATGAT...AATTTATTGAAA/TGAGATTTCATT...AACAG|GAA 1 1 7.241
18434066 GT-AG 0 1.000000099473604e-05 1254 rna-XM_033784855.1 3682517 7 19869366 19870619 Asterias rubens 7604 CAG|GTAAGAAAAC...TTATCTTTAAAA/TTAAAATTCATG...TACAG|CTT 0 1 8.869
18434067 GT-AG 0 3.787007618336551e-05 217 rna-XM_033784855.1 3682517 8 19867305 19867521 Asterias rubens 7604 GCA|GTAAGTGTGA...AATGTTTTACTT/AAATGTTTTACT...TACAG|AGA 2 1 23.657
18434068 GT-AG 0 0.0062610053877189 774 rna-XM_033784855.1 3682517 9 19863682 19864455 Asterias rubens 7604 CAG|GTATGTTTAT...TTGGCGTTAATT/ATTGTTTTCATT...TACAG|ATA 1 1 46.504
18434069 GT-AG 0 1.000000099473604e-05 527 rna-XM_033784855.1 3682517 10 19858491 19859017 Asterias rubens 7604 AAG|GTAAGATTAT...TTTTTCCTATTT/TCCTATTTTATT...TTCAG|ATT 0 1 83.905
18434070 GT-AG 0 1.000000099473604e-05 775 rna-XM_033784855.1 3682517 11 19857539 19858313 Asterias rubens 7604 GAG|GTTAGTTATC...TAATTCCTGATT/TAATTCCTGATT...TGCAG|CAT 0 1 85.325
18434071 GT-AG 0 1.000000099473604e-05 455 rna-XM_033784855.1 3682517 12 19856913 19857367 Asterias rubens 7604 CTG|GTCAGTATTG...CATCTGTTAATG/TGTTTATTCATG...TACAG|GAA 0 1 86.696
18434072 GC-AG 0 1.000000099473604e-05 417 rna-XM_033784855.1 3682517 13 19855253 19855669 Asterias rubens 7604 GAG|GCAAGTCCCC...TATTCTTTTGTT/TTTATGTTTATA...AGCAG|GGC 1 1 96.664
18434073 GT-AG 0 1.000000099473604e-05 835 rna-XM_033784855.1 3682517 14 19854197 19855031 Asterias rubens 7604 GAG|GTAAGTTCAA...TTTTTTGTATTT/ACGAGACTCATA...TACAG|TCT 0 1 98.436
18444873 GT-AG 0 1.000000099473604e-05 2342 rna-XM_033784855.1 3682517 1 19874330 19876671 Asterias rubens 7604 TGA|GTAAGTACAA...TGATGCTAGATG/AGCGTGCTAATT...GACAG|GTA   0 0.281

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