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)

10 rows where transcript_id = 34283742

✎ 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
192054070 GT-AG 0 1.000000099473604e-05 190 rna-XM_014871401.1 34283742 2 1735487 1735676 Sturnus vulgaris 9172 AAG|GTGAGCATTT...AACATTTTAATG/AACATTTTAATG...TTAAG|GTC 0 1 37.074
192054071 GT-AG 0 3.852890244731358e-05 600 rna-XM_014871401.1 34283742 3 1735851 1736450 Sturnus vulgaris 9172 GGC|GTAAGTGGTT...TTTTTTTTATTG/TTTTTTTTTATT...TCAAG|TTT 0 1 42.28
192054072 GT-AG 0 1.000000099473604e-05 581 rna-XM_014871401.1 34283742 4 1736633 1737213 Sturnus vulgaris 9172 AAG|GTAATTATTG...ATTGTCTTCATT/ATTGTCTTCATT...TACAG|TCT 2 1 47.726
192054073 GT-AG 0 1.000000099473604e-05 559 rna-XM_014871401.1 34283742 5 1737344 1737902 Sturnus vulgaris 9172 CTA|GTAAGTAGTC...TCTGCCTGATTA/TTCTGCCTGATT...GAAAG|CAA 0 1 51.616
192054074 GT-AG 0 1.000000099473604e-05 1784 rna-XM_014871401.1 34283742 6 1737985 1739768 Sturnus vulgaris 9172 CAG|GTGGGTGCAC...AAACTTTTGAGT/AAACTTTTGAGT...TTTAG|ATA 1 1 54.069
192054075 GT-AG 0 0.0004320100200283 1234 rna-XM_014871401.1 34283742 7 1739860 1741093 Sturnus vulgaris 9172 ATG|GTATGGTTAA...AGTTGTTTAATT/AGTTGTTTAATT...TCTAG|TGA 2 1 56.792
192054076 GT-AG 0 0.0004053855581822 661 rna-XM_014871401.1 34283742 8 1741179 1741839 Sturnus vulgaris 9172 AAT|GTAAGTTTCT...ATATCCTTGCTT/AAATTACTAATA...TCTAG|AAC 0 1 59.336
192054077 GT-AG 0 1.000000099473604e-05 847 rna-XM_014871401.1 34283742 9 1742020 1742866 Sturnus vulgaris 9172 GAG|GTTAGTAATT...TGTTCTCTAATA/TGTTCTCTAATA...TACAG|ATT 0 1 64.722
192054078 GT-AG 0 1.1423294860439388e-05 343 rna-XM_014871401.1 34283742 10 1743000 1743342 Sturnus vulgaris 9172 TGC|GTGAGTTTGA...TTTACCTTGGTT/CCTTGGTTTATT...TTTAG|TTA 1 1 68.701
192054536 GT-AG 0 1.000000099473604e-05 123 rna-XM_014871401.1 34283742 1 1735312 1735434 Sturnus vulgaris 9172 CAG|GTAAGTGTTT...TTTTCTTTTGCA/TATAATTTCACT...TATAG|GAT   0 35.548

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