Skip to content

Commit

Permalink
Replace read.table with read.csv
Browse files Browse the repository at this point in the history
  • Loading branch information
drpatelh committed Mar 11, 2020
1 parent e556636 commit cf6c5c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/plot_homer_annotatepeaks.r
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ plot.feature.dat <- data.frame()
for (idx in 1:length(HomerFiles)) {

sampleid = SampleIDs[idx]
anno.dat <- read.table(HomerFiles[idx], sep="\t", header=TRUE,quote="")
anno.dat <- read.csv(HomerFiles[idx], sep="\t", header=TRUE)
anno.dat <- anno.dat[,c("Annotation","Distance.to.TSS","Nearest.PromoterID")]

## REPLACE UNASSIGNED FEATURE ENTRIES WITH SENSIBLE VALUES
Expand Down

0 comments on commit cf6c5c3

Please sign in to comment.