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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
174208685 GT-AG 0 1.000000099473604e-05 1077 rna-FME351_LOCUS51 31249523 1 239984 241060 Rotaria socialis 392032 AAG|GTAAGGATTC...AAATCTTTATTT/TTTATTTTTATT...TTCAG|GTC 1 1 0.674
174208686 GT-AG 0 0.0003734800092213 60 rna-FME351_LOCUS51 31249523 2 239854 239913 Rotaria socialis 392032 ACA|GTAAAATTGA...ATATTTTTAATC/ATATTTTTAATC...TTCAG|AGA 2 1 2.56
174208687 GT-AG 0 1.000000099473604e-05 54 rna-FME351_LOCUS51 31249523 3 239407 239460 Rotaria socialis 392032 TTG|GTAATGGAAT...TTTTCTTTAATG/TTTTTCTTTAAT...TTTAG|CAT 2 1 13.15
174208688 GT-AG 0 1.000000099473604e-05 196 rna-FME351_LOCUS51 31249523 4 239137 239332 Rotaria socialis 392032 AAG|GTAAGATAAA...TCTTCTTCAACT/CTTCAACTTATT...TTTAG|GAG 1 1 15.144
174208689 GT-AG 0 0.0238920945458379 57 rna-FME351_LOCUS51 31249523 5 238874 238930 Rotaria socialis 392032 GTA|GTATGTATTC...AATTTATTGACC/AATTTATTGACC...TGCAG|GAA 0 1 20.695
174208690 GT-AG 0 0.0019973994144391 342 rna-FME351_LOCUS51 31249523 6 238400 238741 Rotaria socialis 392032 ATG|GTATGTTAAT...TTAATTTTGATG/ATTAGACTAATC...ATTAG|GAT 0 1 24.252
174208691 GT-AG 0 1.769914428527654e-05 158 rna-FME351_LOCUS51 31249523 7 237787 237944 Rotaria socialis 392032 GAG|GTAAATTGAA...ATATTTTTAAAA/ATATTTTTAAAA...AATAG|ATT 2 1 36.513
174208692 GT-AG 0 5.11202467226669e-05 57 rna-FME351_LOCUS51 31249523 8 237570 237626 Rotaria socialis 392032 AAT|GTAAAGTATC...TTTACTTTAAAA/AAATTTTTCAAA...TGCAG|TTC 0 1 40.825
174208693 GT-AG 0 0.0007558656973953 52 rna-FME351_LOCUS51 31249523 9 237436 237487 Rotaria socialis 392032 CTG|GTATAATCTT...TATTCCATAGAA/CATAGAATAAGA...TATAG|AGG 1 1 43.034
174208694 GT-AG 0 1.000000099473604e-05 59 rna-FME351_LOCUS51 31249523 10 237219 237277 Rotaria socialis 392032 ACT|GTAAGAATAA...AATTTCTAAACA/AAATTTCTAAAC...TAAAG|AAT 0 1 47.292
174208695 GT-AG 0 1.000000099473604e-05 273 rna-FME351_LOCUS51 31249523 11 236627 236899 Rotaria socialis 392032 TCG|GTAAAAATTT...TGTATTTTGAAG/TTTCTACTGATA...TTTAG|AAA 1 1 55.888
174208696 GT-AG 0 0.0002146810284186 66 rna-FME351_LOCUS51 31249523 12 236191 236256 Rotaria socialis 392032 AAT|GTAAGTTTAA...TCTTCTTCAATA/CCGTTTCTGAAA...AATAG|ATA 2 1 65.858
174208697 GT-AG 0 0.0006889746779488 80 rna-FME351_LOCUS51 31249523 13 235415 235494 Rotaria socialis 392032 ATA|GTAAGCAATA...TTCTTTTTAACT/TTCTTTTTAACT...TTTAG|TTC 2 1 84.613

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