The use of a traditional Benford analysis on DNA is troubling for a couple of reasons: The DNA quad alphabet does not have any self-evident inherent order of magnitude, so choosing which to designate a lower value from another is problematic with Benford log of scale. HexDec of Twomer DNA sequence when converted to Decimal …
Author: Page Telegram
FASTQ.SH DNA parser
BHEXDNA.bas – Code for DNA Forensics
Pre-Study #5: Chicago Election Time Stamps vs. IL
Pre-Study 005: Chicago Election Time Stamp Machine Logs vs Illinois and Swing States/areas. Please visit main study [] as this page consists of some preliminary and incomplete testing and study. Sources: 2020 Election CBEC Log Data from FOIA 2020 Illinois Log Data from FOIA ***Response Rec’v’d, Pending Release*** ———————————————————————— Document Created 12/018/2020, Update @ 14:32 …
Read the full post →“Pre-Study #5: Chicago Election Time Stamps vs. IL”
Study #3: COVID-19 Case/Death Data
Study 003: COVID-19 NY Times Stats Benford Study in 10,000 sample subset progressions for: (1) Accumulative Cases (1st Digit/All Digits), (2) Accumulative Deaths (1st Digit/All Digits), (3) Delta Cases (1st Digit/All Digits), (4) Delta Deaths (1st Digit/All Digits) [1,000 sample subsets], (5) Differential between Cases and Deaths (1st Digit/All Digits) Morris asked if I could …
Study #2: Change in Benford; Elections
Study 002: Election Time Stamps of 10,000 sample points per pool compared in sequence to election ballot votes for variance in Benford Curves. In requesting the data, we quote the 2002 Voting Standards Manual the following way: I hereby request the time stamp logs of the machine In-Election Log Data: the hour, minute and second …
Read the full post →“Study #2: Change in Benford; Elections”
Study #1: Election Data
First we FOIA the time-stamp machine logs of several types of machine data sets:1 Central Tabulator (Machine that receives all votes)2 Ballot Scanner (Machine that scans the ballots)3 Voting Machine (Touch screen machine for voting)4 Mail-in Ballot (When Mail-in ballots are entered into the central tabulator, this data is included when requesting item 1) In …
fastq.sh – DNA extractor from fastq files
#!/bin/bash awk ‘NR%4==2’ $1 > 90.a awk ‘NR%4==0’ $1 > 90.q cat 90.q | grep -n [\”\’\^\$\#\@\!\%\&\*\(\)\+\] > 90.v awk ‘NR%2==0′ $1 > 90.p cat 90.q | grep -nv [\”\’\^\$\#\@\!\%\&\*\(\)\+\] > 90.n cat 90.n | cut -d’:’ -f1 > 90.m cat 90.v | cut -d’:’ -f1 > 90.w awk ‘FNR == NR { h[$1]; next …
Read the full post →“fastq.sh – DNA extractor from fastq files”
Gify.sh – Animate Graphs
#!/bin/bash convert -delay 15 $1.png -loop 0 results.gif
Graph.sh – w/GNUPlot
#!/bin/bash mv _dall3.dat.csv $1.csv gnuplot -persist <<-EOFMarker set xrange [0:10] set yrange [0:45] datafile = “$1.csv” set output “$1.png” set xlabel “Digit” set ylabel “Percent” set terminal png size 600,400 set datafile separator ‘,’ set title ‘BenfordBench.org Analysis of Election Log Time-Stamps in Delta Total Seconds’ font “,10” textcolor rgbcolor “black” set pointsize 3 plot …