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

✎ 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
214074174 GT-AG 0 1.000000099473604e-05 71130 rna-XM_026799794.1 38725039 2 34855877 34927006 Zonotrichia albicollis 44394 GTG|GTAAGCAGAT...TGGTTTTTGTTT/AGGAATCTCATC...TTCAG|GTG 1 1 3.884
214074175 GT-AG 0 1.000000099473604e-05 1386 rna-XM_026799794.1 38725039 3 34854406 34855791 Zonotrichia albicollis 44394 AAG|GTGAGTGGCT...GTTTTTTCAACA/TGTTTTTTCAAC...ATTAG|TGC 2 1 7.861
214074176 GT-AG 0 1.000000099473604e-05 1667 rna-XM_026799794.1 38725039 4 34852647 34854313 Zonotrichia albicollis 44394 AAG|GTAGTTACAG...TTGGCATTGATT/ATTATATTGATA...TTTAG|AAT 1 1 12.167
214074177 GT-AG 0 0.0009996983006801 5711 rna-XM_026799794.1 38725039 5 34846861 34852571 Zonotrichia albicollis 44394 AAG|GTAACTTGCT...AATTTCTCACCA/CAATTTCTCACC...GCCAG|CTG 1 1 15.676
214074178 GT-AG 0 2.014142857388375e-05 5172 rna-XM_026799794.1 38725039 6 34841677 34846848 Zonotrichia albicollis 44394 TGG|GTAAGTCTGT...GTGCTCTTGATT/ACAGTTTTGACA...TACAG|GAC 1 1 16.238
214074179 GT-AG 0 1.000000099473604e-05 1217 rna-XM_026799794.1 38725039 7 34840302 34841518 Zonotrichia albicollis 44394 ATC|GTAAGAGCTC...TGATTTTTGAAA/TGATTTTTGAAA...TTCAG|GAA 0 1 23.631
214074180 GT-AG 0 1.000000099473604e-05 934 rna-XM_026799794.1 38725039 8 34839260 34840193 Zonotrichia albicollis 44394 CAG|GTTAGATCTT...ACATCCTTGATG/ATGCTATTGATT...ATCAG|GTA 0 1 28.685
214074181 GT-AG 0 1.000000099473604e-05 1964 rna-XM_026799794.1 38725039 9 34837198 34839161 Zonotrichia albicollis 44394 CAG|GTAAGTCAAT...GTGTCCTTTCCT/TTTTGTCTCTCA...AGCAG|TCT 2 1 33.271
214074182 GT-AG 0 1.000000099473604e-05 8705 rna-XM_026799794.1 38725039 10 34828285 34836989 Zonotrichia albicollis 44394 CAG|GTACGTGCAA...TTTTTTTTATTT/TTTTTTTTTATT...TCCAG|TTG 0 1 43.004
214074183 GT-AG 0 1.3826263802602056e-05 2010 rna-XM_026799794.1 38725039 11 34826080 34828089 Zonotrichia albicollis 44394 AAG|GTTTGTGTTC...CTGTCCCTGATG/CTGTCCCTGATG...CCCAG|GAC 0 1 52.129
214074184 GT-AG 0 1.000000099473604e-05 317 rna-XM_026799794.1 38725039 12 34825598 34825914 Zonotrichia albicollis 44394 AGG|GTGAACTCTC...TGACCCTTCCAG/AGGTGACTGACC...AGCAG|CAG 0 1 59.85
214074185 GT-AG 0 0.5702227974921544 1067 rna-XM_026799794.1 38725039 13 34824368 34825434 Zonotrichia albicollis 44394 AAG|GTACCCATTC...TTGATCCTAACT/TTGATCCTAACT...ATCAG|TTT 1 1 67.478
214075734 GT-AG 0 0.0001135045033977 2697 rna-XM_026799794.1 38725039 1 34927081 34929777 Zonotrichia albicollis 44394 TCG|GTAAGTTTTG...GTTTTGTTATCT/TGTTTTGTTATC...TTCAG|GAC   0 2.995

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