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

✎ 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
191227625 GT-AG 0 1.000000099473604e-05 10616 rna-XM_030510723.1 34177714 1 150073594 150084209 Strigops habroptila 2489341 CCG|GTGAGTCCGG...TAAATTTTAACT/TAAATTTTAACT...AACAG|GAG 2 1 26.558
191227626 GT-AG 0 1.000000099473604e-05 4097 rna-XM_030510723.1 34177714 2 150068891 150072987 Strigops habroptila 2489341 TAG|GTGAGTTGTG...TTCAACTTGATA/ACTGTGTTCAAC...AATAG|TTT 2 1 39.718
191227627 GT-AG 0 0.0928249155025348 271 rna-XM_030510723.1 34177714 3 150068452 150068722 Strigops habroptila 2489341 AAA|GTATGTTTAG...AATCCTTTGATA/TGTATTCTTAGA...TCTAG|AAT 2 1 43.366
191227628 GT-AG 0 1.000000099473604e-05 1998 rna-XM_030510723.1 34177714 4 150066314 150068311 Strigops habroptila 2489341 CAG|GTAAGTCCAG...CTAATCTTAATG/ATGGGTTTTATT...CTTAG|GGG 1 1 46.406
191227629 GT-AG 0 0.0001990664720598 9596 rna-XM_030510723.1 34177714 5 150056547 150066142 Strigops habroptila 2489341 AAG|GTATGTACAC...TTTCTCTTACTC/GTTTCTCTTACT...CCTAG|GTG 1 1 50.119
191227630 GT-AG 0 4.890290710224697e-05 2142 rna-XM_030510723.1 34177714 6 150054215 150056356 Strigops habroptila 2489341 TAG|GTATGGATAT...TAATTCTTTGCT/ACAGGATTAACC...ACCAG|AGG 2 1 54.245
191227631 GT-AG 0 1.000000099473604e-05 2738 rna-XM_030510723.1 34177714 7 150051420 150054157 Strigops habroptila 2489341 AAG|GTAAGATACA...CTCTCTTTTTTT/ATTGTAGTAAAA...AACAG|CCG 2 1 55.483
191227632 GT-AG 0 1.000000099473604e-05 119 rna-XM_030510723.1 34177714 8 150051199 150051317 Strigops habroptila 2489341 TGG|GTAAGAGTTT...AAAGCCATAATG/TTTATACTGAAA...TACAG|CTG 2 1 57.698
191227633 GT-AG 0 0.0011299716123404 1876 rna-XM_030510723.1 34177714 9 150049245 150051120 Strigops habroptila 2489341 AAG|GTAACTTGCA...CTTTCTTTTTCG/TTGGATCTCATA...TACAG|CCG 2 1 59.392
191227634 GT-AG 0 1.000000099473604e-05 935 rna-XM_030510723.1 34177714 10 150048193 150049127 Strigops habroptila 2489341 TTT|GTAAGGATGA...TCCATTTTGCTC/CTTTTCTCCATT...TGTAG|CAT 2 1 61.933
191227635 GT-AG 0 1.000000099473604e-05 2251 rna-XM_030510723.1 34177714 11 150045810 150048060 Strigops habroptila 2489341 AGA|GTAAGTGGTT...TATTTCTAATCA/TTATTTCTAATC...TTCAG|CCT 2 1 64.799
191227636 GT-AG 0 1.000000099473604e-05 2951 rna-XM_030510723.1 34177714 12 150042653 150045603 Strigops habroptila 2489341 TTG|GTCAGTAATA...TAATACTTAAAA/CCAGTTCTAAAT...TTTAG|CTA 1 1 69.273
191227637 GT-AG 0 1.000000099473604e-05 1050 rna-XM_030510723.1 34177714 13 150041045 150042094 Strigops habroptila 2489341 GAG|GTACTGAAGG...GTGTTTTTATTC/TTCTTTTTCATC...CTTAG|GTC 1 1 81.39

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