Showing posts with label file format. Show all posts
Showing posts with label file format. Show all posts

Sunday, July 3, 2016

R add emails to participants for NSF project report

Note: One mismatch occurred due to French and English inputs. Manually corrected this entry. 
library(xlsx)
list.files()
tb = read.xlsx("Actual Participants_v1.xlsx", 1)
tb$LAST.NAME = toupper(tb$LAST.NAME)
fulltb = read.xlsx("eventbrite_registration.xlsx", 2)  
fulltb$Last.Name = toupper(fulltb$Last.Name)
tb$email = fulltb$Email[match( tb$LAST.NAME, fulltb$Last.Name) ]
write.xlsx(tb, "qbio_participants_v2.xlsx")


Wednesday, December 17, 2014

convert read-only pdf to modifiable pdf

I saved pdf/A file to postscript.

I then "ps2pdf" and generated a new pdf, which can be annotated.

Saturday, March 1, 2014

vcf format, va


From
http://www.broadinstitute.org/igv/viewing_vcf_files

VCF stands for Variant Call Format, and this file format is used by the 1000 Genomes project to encode SNPs and other structural genetic variants.  The format is further described on the 1000 Genomes project Web site.  VCF calls are available at EBI / NCBI.


http://www.broadinstitute.org/software/igv/?q=download