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

✎ 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
214074037 GT-AG 0 1.000000099473604e-05 85 rna-XM_014265002.2 38725028 1 4604273 4604357 Zonotrichia albicollis 44394 GGG|GTAGGTGGAT...TTCTTTTTGAAC/ATATGCTTAATT...TGCAG|CTG 0 1 6.967
214074038 GT-AG 0 1.000000099473604e-05 116 rna-XM_014265002.2 38725028 2 4604457 4604572 Zonotrichia albicollis 44394 CAG|GTGGGTTTTG...TCTTTCTTTTCA/ATTTTGCTCATT...CTCAG|AGG 0 1 11.172
214074039 GT-AG 0 0.0001711807924676 88 rna-XM_014265002.2 38725028 3 4604669 4604756 Zonotrichia albicollis 44394 GAG|GTACTTCTAA...GATTTCCTAACT/TCTTTTTTCAGT...TGCAG|ATT 0 1 15.251
214074040 GT-AG 0 1.000000099473604e-05 389 rna-XM_014265002.2 38725028 4 4604853 4605241 Zonotrichia albicollis 44394 CAG|GTGAAGTACT...TGTGATTTAACT/AATTACTTCATT...TACAG|GAA 0 1 19.329
214074041 GT-AG 0 5.010732360666561e-05 397 rna-XM_014265002.2 38725028 5 4605381 4605777 Zonotrichia albicollis 44394 AAG|GTAAATTTTT...GAGGTCATGACA/TAAATTTTAAGA...TGTAG|ACA 1 1 25.234
214074042 GT-AG 0 4.845030705938734e-05 515 rna-XM_014265002.2 38725028 6 4605999 4606513 Zonotrichia albicollis 44394 ATG|GTACGTTGGC...GCGTTTTTTGCA/TTTTTTGCAACT...GCTAG|ATC 0 1 34.622
214074043 GT-AG 0 1.000000099473604e-05 1405 rna-XM_014265002.2 38725028 7 4606635 4608039 Zonotrichia albicollis 44394 CAG|GTAAAATTTG...TTCTCCATATCT/CCATATCTAATG...TTTAG|GCA 1 1 39.762
214074044 GT-AG 0 1.000000099473604e-05 949 rna-XM_014265002.2 38725028 8 4608300 4609248 Zonotrichia albicollis 44394 AAG|GTAAAAAGTT...ATAATTTCATTT/GATAATTTCATT...TATAG|GGT 0 1 50.807
214074045 GT-AG 0 1.000000099473604e-05 175 rna-XM_014265002.2 38725028 9 4609615 4609789 Zonotrichia albicollis 44394 AAG|GTAAATGAAA...ATGTTTTTCCTT/GCTGGTTTCAGA...GACAG|GCT 0 1 66.355
214074046 GT-AG 0 1.000000099473604e-05 1231 rna-XM_014265002.2 38725028 10 4609918 4611148 Zonotrichia albicollis 44394 AAG|GTACTGACCT...AGTACTTAAATG/TACACACTAATA...TTCAG|GTT 2 1 71.793
214074047 GT-AG 0 1.000000099473604e-05 890 rna-XM_014265002.2 38725028 11 4611357 4612246 Zonotrichia albicollis 44394 GAG|GTAAAGGAAT...GCATCATTACAG/AGAGGCATCATT...CCCAG|GCG 0 1 80.629
214074048 GT-AG 0 0.0003191385126279 118 rna-XM_014265002.2 38725028 12 4612476 4612593 Zonotrichia albicollis 44394 CAG|GTTTGCGCTT...TCCTCCTTAGCT/CCTTAGCTGATT...CCCAG|GAA 1 1 90.357
214074049 GT-AG 0 0.0005166082681571 359 rna-XM_014265002.2 38725028 13 4612728 4613086 Zonotrichia albicollis 44394 ATA|GTAAGTTTCC...CCATCTTTATTT/CTTTATTTGATC...TTAAG|GCT 0 1 96.049

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