Skip to content

Commit 213bd9a

Browse files
committed
2 parents 5aab3e3 + be2f488 commit 213bd9a

3 files changed

Lines changed: 41 additions & 39 deletions

File tree

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@ a `fix` argument that could be helpful.
4444

4545
Enter directory containing sample info file
4646
(see `examples/nonstranded_sample_info.txt` and
47-
`examples/stranded_sample_info.txt` for sample info file templates).
47+
`examples/stranded_sample_info.txt` for sample info file templates.
48+
Note: the norm_factor column of these files is currently ignored, but
49+
just has to be present.).
4850
Run the following,
4951
substituting the location of the `enricherator` source tree for
5052
`<srcdir>`. You will also need to adjust several of the arguments
Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
genotype,sample,rep,strand,file
2-
py79,input,rep1,both,/corexfs/schroedj/stranded_hbd_enrichment/py79/input/bootstrap/py79_rep1_input_both_strand_counts_with_strand_col.bedgraph
3-
py79,input,rep2,both,/corexfs/schroedj/stranded_hbd_enrichment/py79/input/bootstrap/py79_rep2_input_both_strand_counts_with_strand_col.bedgraph
4-
py79,hbd,rep1,both,/corexfs/schroedj/stranded_hbd_enrichment/py79/hbd/bootstrap/py79_rep1_hbd_both_strand_counts_with_strand_col.bedgraph
5-
py79,hbd,rep2,both,/corexfs/schroedj/stranded_hbd_enrichment/py79/hbd/bootstrap/py79_rep2_hbd_both_strand_counts_with_strand_col.bedgraph
6-
rnhB,input,rep1,both,/corexfs/schroedj/stranded_hbd_enrichment/rnhB/input/bootstrap/rnhB_rep1_input_both_strand_counts_with_strand_col.bedgraph
7-
rnhB,input,rep2,both,/corexfs/schroedj/stranded_hbd_enrichment/rnhB/input/bootstrap/rnhB_rep2_input_both_strand_counts_with_strand_col.bedgraph
8-
rnhB,hbd,rep1,both,/corexfs/schroedj/stranded_hbd_enrichment/rnhB/hbd/bootstrap/rnhB_rep1_hbd_both_strand_counts_with_strand_col.bedgraph
9-
rnhB,hbd,rep2,both,/corexfs/schroedj/stranded_hbd_enrichment/rnhB/hbd/bootstrap/rnhB_rep2_hbd_both_strand_counts_with_strand_col.bedgraph
10-
rnhC,input,rep1,both,/corexfs/schroedj/stranded_hbd_enrichment/rnhC/input/bootstrap/rnhC_rep1_input_both_strand_counts_with_strand_col.bedgraph
11-
rnhC,input,rep2,both,/corexfs/schroedj/stranded_hbd_enrichment/rnhC/input/bootstrap/rnhC_rep2_input_both_strand_counts_with_strand_col.bedgraph
12-
rnhC,hbd,rep1,both,/corexfs/schroedj/stranded_hbd_enrichment/rnhC/hbd/bootstrap/rnhC_rep1_hbd_both_strand_counts_with_strand_col.bedgraph
13-
rnhC,hbd,rep2,both,/corexfs/schroedj/stranded_hbd_enrichment/rnhC/hbd/bootstrap/rnhC_rep2_hbd_both_strand_counts_with_strand_col.bedgraph
1+
genotype,sample,rep,strand,file,norm_factor
2+
py79,input,rep1,both,/corexfs/schroedj/stranded_hbd_enrichment/py79/input/bootstrap/py79_rep1_input_both_strand_counts_with_strand_col.bedgraph,1
3+
py79,input,rep2,both,/corexfs/schroedj/stranded_hbd_enrichment/py79/input/bootstrap/py79_rep2_input_both_strand_counts_with_strand_col.bedgraph,1
4+
py79,hbd,rep1,both,/corexfs/schroedj/stranded_hbd_enrichment/py79/hbd/bootstrap/py79_rep1_hbd_both_strand_counts_with_strand_col.bedgraph,1
5+
py79,hbd,rep2,both,/corexfs/schroedj/stranded_hbd_enrichment/py79/hbd/bootstrap/py79_rep2_hbd_both_strand_counts_with_strand_col.bedgraph,1
6+
rnhB,input,rep1,both,/corexfs/schroedj/stranded_hbd_enrichment/rnhB/input/bootstrap/rnhB_rep1_input_both_strand_counts_with_strand_col.bedgraph,1
7+
rnhB,input,rep2,both,/corexfs/schroedj/stranded_hbd_enrichment/rnhB/input/bootstrap/rnhB_rep2_input_both_strand_counts_with_strand_col.bedgraph,1
8+
rnhB,hbd,rep1,both,/corexfs/schroedj/stranded_hbd_enrichment/rnhB/hbd/bootstrap/rnhB_rep1_hbd_both_strand_counts_with_strand_col.bedgraph,1
9+
rnhB,hbd,rep2,both,/corexfs/schroedj/stranded_hbd_enrichment/rnhB/hbd/bootstrap/rnhB_rep2_hbd_both_strand_counts_with_strand_col.bedgraph,1
10+
rnhC,input,rep1,both,/corexfs/schroedj/stranded_hbd_enrichment/rnhC/input/bootstrap/rnhC_rep1_input_both_strand_counts_with_strand_col.bedgraph,1
11+
rnhC,input,rep2,both,/corexfs/schroedj/stranded_hbd_enrichment/rnhC/input/bootstrap/rnhC_rep2_input_both_strand_counts_with_strand_col.bedgraph,1
12+
rnhC,hbd,rep1,both,/corexfs/schroedj/stranded_hbd_enrichment/rnhC/hbd/bootstrap/rnhC_rep1_hbd_both_strand_counts_with_strand_col.bedgraph,1
13+
rnhC,hbd,rep2,both,/corexfs/schroedj/stranded_hbd_enrichment/rnhC/hbd/bootstrap/rnhC_rep2_hbd_both_strand_counts_with_strand_col.bedgraph,1

examples/stranded_sample_info.txt

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
1-
genotype,sample,rep,strand,file
2-
py79,input,rep1,plus,/corexfs/schroedj/stranded_hbd_enrichment/py79/input/bootstrap/py79_rep1_input_plus_strand_counts_with_strand_col.bedgraph
3-
py79,input,rep1,minus,/corexfs/schroedj/stranded_hbd_enrichment/py79/input/bootstrap/py79_rep1_input_minus_strand_counts_with_strand_col.bedgraph
4-
py79,input,rep2,plus,/corexfs/schroedj/stranded_hbd_enrichment/py79/input/bootstrap/py79_rep2_input_plus_strand_counts_with_strand_col.bedgraph
5-
py79,input,rep2,minus,/corexfs/schroedj/stranded_hbd_enrichment/py79/input/bootstrap/py79_rep2_input_minus_strand_counts_with_strand_col.bedgraph
6-
py79,hbd,rep1,plus,/corexfs/schroedj/stranded_hbd_enrichment/py79/hbd/bootstrap/py79_rep1_hbd_plus_strand_counts_with_strand_col.bedgraph
7-
py79,hbd,rep1,minus,/corexfs/schroedj/stranded_hbd_enrichment/py79/hbd/bootstrap/py79_rep1_hbd_minus_strand_counts_with_strand_col.bedgraph
8-
py79,hbd,rep2,plus,/corexfs/schroedj/stranded_hbd_enrichment/py79/hbd/bootstrap/py79_rep2_hbd_plus_strand_counts_with_strand_col.bedgraph
9-
py79,hbd,rep2,minus,/corexfs/schroedj/stranded_hbd_enrichment/py79/hbd/bootstrap/py79_rep2_hbd_minus_strand_counts_with_strand_col.bedgraph
10-
rnhB,input,rep1,plus,/corexfs/schroedj/stranded_hbd_enrichment/rnhB/input/bootstrap/rnhB_rep1_input_plus_strand_counts_with_strand_col.bedgraph
11-
rnhB,input,rep1,minus,/corexfs/schroedj/stranded_hbd_enrichment/rnhB/input/bootstrap/rnhB_rep1_input_minus_strand_counts_with_strand_col.bedgraph
12-
rnhB,input,rep2,plus,/corexfs/schroedj/stranded_hbd_enrichment/rnhB/input/bootstrap/rnhB_rep2_input_plus_strand_counts_with_strand_col.bedgraph
13-
rnhB,input,rep2,minus,/corexfs/schroedj/stranded_hbd_enrichment/rnhB/input/bootstrap/rnhB_rep2_input_minus_strand_counts_with_strand_col.bedgraph
14-
rnhB,hbd,rep1,plus,/corexfs/schroedj/stranded_hbd_enrichment/rnhB/hbd/bootstrap/rnhB_rep1_hbd_plus_strand_counts_with_strand_col.bedgraph
15-
rnhB,hbd,rep1,minus,/corexfs/schroedj/stranded_hbd_enrichment/rnhB/hbd/bootstrap/rnhB_rep1_hbd_minus_strand_counts_with_strand_col.bedgraph
16-
rnhB,hbd,rep2,plus,/corexfs/schroedj/stranded_hbd_enrichment/rnhB/hbd/bootstrap/rnhB_rep2_hbd_plus_strand_counts_with_strand_col.bedgraph
17-
rnhB,hbd,rep2,minus,/corexfs/schroedj/stranded_hbd_enrichment/rnhB/hbd/bootstrap/rnhB_rep2_hbd_minus_strand_counts_with_strand_col.bedgraph
18-
rnhC,input,rep1,plus,/corexfs/schroedj/stranded_hbd_enrichment/rnhC/input/bootstrap/rnhC_rep1_input_plus_strand_counts_with_strand_col.bedgraph
19-
rnhC,input,rep1,minus,/corexfs/schroedj/stranded_hbd_enrichment/rnhC/input/bootstrap/rnhC_rep1_input_minus_strand_counts_with_strand_col.bedgraph
20-
rnhC,input,rep2,plus,/corexfs/schroedj/stranded_hbd_enrichment/rnhC/input/bootstrap/rnhC_rep2_input_plus_strand_counts_with_strand_col.bedgraph
21-
rnhC,input,rep2,minus,/corexfs/schroedj/stranded_hbd_enrichment/rnhC/input/bootstrap/rnhC_rep2_input_minus_strand_counts_with_strand_col.bedgraph
22-
rnhC,hbd,rep1,plus,/corexfs/schroedj/stranded_hbd_enrichment/rnhC/hbd/bootstrap/rnhC_rep1_hbd_plus_strand_counts_with_strand_col.bedgraph
23-
rnhC,hbd,rep1,minus,/corexfs/schroedj/stranded_hbd_enrichment/rnhC/hbd/bootstrap/rnhC_rep1_hbd_minus_strand_counts_with_strand_col.bedgraph
24-
rnhC,hbd,rep2,plus,/corexfs/schroedj/stranded_hbd_enrichment/rnhC/hbd/bootstrap/rnhC_rep2_hbd_plus_strand_counts_with_strand_col.bedgraph
25-
rnhC,hbd,rep2,minus,/corexfs/schroedj/stranded_hbd_enrichment/rnhC/hbd/bootstrap/rnhC_rep2_hbd_minus_strand_counts_with_strand_col.bedgraph
1+
genotype,sample,rep,strand,file,norm_factor
2+
py79,input,rep1,plus,/corexfs/schroedj/stranded_hbd_enrichment/py79/input/bootstrap/py79_rep1_input_plus_strand_counts_with_strand_col.bedgraph,1
3+
py79,input,rep1,minus,/corexfs/schroedj/stranded_hbd_enrichment/py79/input/bootstrap/py79_rep1_input_minus_strand_counts_with_strand_col.bedgraph,1
4+
py79,input,rep2,plus,/corexfs/schroedj/stranded_hbd_enrichment/py79/input/bootstrap/py79_rep2_input_plus_strand_counts_with_strand_col.bedgraph,1
5+
py79,input,rep2,minus,/corexfs/schroedj/stranded_hbd_enrichment/py79/input/bootstrap/py79_rep2_input_minus_strand_counts_with_strand_col.bedgraph,1
6+
py79,hbd,rep1,plus,/corexfs/schroedj/stranded_hbd_enrichment/py79/hbd/bootstrap/py79_rep1_hbd_plus_strand_counts_with_strand_col.bedgraph,1
7+
py79,hbd,rep1,minus,/corexfs/schroedj/stranded_hbd_enrichment/py79/hbd/bootstrap/py79_rep1_hbd_minus_strand_counts_with_strand_col.bedgraph,1
8+
py79,hbd,rep2,plus,/corexfs/schroedj/stranded_hbd_enrichment/py79/hbd/bootstrap/py79_rep2_hbd_plus_strand_counts_with_strand_col.bedgraph,1
9+
py79,hbd,rep2,minus,/corexfs/schroedj/stranded_hbd_enrichment/py79/hbd/bootstrap/py79_rep2_hbd_minus_strand_counts_with_strand_col.bedgraph,1
10+
rnhB,input,rep1,plus,/corexfs/schroedj/stranded_hbd_enrichment/rnhB/input/bootstrap/rnhB_rep1_input_plus_strand_counts_with_strand_col.bedgraph,1
11+
rnhB,input,rep1,minus,/corexfs/schroedj/stranded_hbd_enrichment/rnhB/input/bootstrap/rnhB_rep1_input_minus_strand_counts_with_strand_col.bedgraph,1
12+
rnhB,input,rep2,plus,/corexfs/schroedj/stranded_hbd_enrichment/rnhB/input/bootstrap/rnhB_rep2_input_plus_strand_counts_with_strand_col.bedgraph,1
13+
rnhB,input,rep2,minus,/corexfs/schroedj/stranded_hbd_enrichment/rnhB/input/bootstrap/rnhB_rep2_input_minus_strand_counts_with_strand_col.bedgraph,1
14+
rnhB,hbd,rep1,plus,/corexfs/schroedj/stranded_hbd_enrichment/rnhB/hbd/bootstrap/rnhB_rep1_hbd_plus_strand_counts_with_strand_col.bedgraph,1
15+
rnhB,hbd,rep1,minus,/corexfs/schroedj/stranded_hbd_enrichment/rnhB/hbd/bootstrap/rnhB_rep1_hbd_minus_strand_counts_with_strand_col.bedgraph,1
16+
rnhB,hbd,rep2,plus,/corexfs/schroedj/stranded_hbd_enrichment/rnhB/hbd/bootstrap/rnhB_rep2_hbd_plus_strand_counts_with_strand_col.bedgraph,1
17+
rnhB,hbd,rep2,minus,/corexfs/schroedj/stranded_hbd_enrichment/rnhB/hbd/bootstrap/rnhB_rep2_hbd_minus_strand_counts_with_strand_col.bedgraph,1
18+
rnhC,input,rep1,plus,/corexfs/schroedj/stranded_hbd_enrichment/rnhC/input/bootstrap/rnhC_rep1_input_plus_strand_counts_with_strand_col.bedgraph,1
19+
rnhC,input,rep1,minus,/corexfs/schroedj/stranded_hbd_enrichment/rnhC/input/bootstrap/rnhC_rep1_input_minus_strand_counts_with_strand_col.bedgraph,1
20+
rnhC,input,rep2,plus,/corexfs/schroedj/stranded_hbd_enrichment/rnhC/input/bootstrap/rnhC_rep2_input_plus_strand_counts_with_strand_col.bedgraph,1
21+
rnhC,input,rep2,minus,/corexfs/schroedj/stranded_hbd_enrichment/rnhC/input/bootstrap/rnhC_rep2_input_minus_strand_counts_with_strand_col.bedgraph,1
22+
rnhC,hbd,rep1,plus,/corexfs/schroedj/stranded_hbd_enrichment/rnhC/hbd/bootstrap/rnhC_rep1_hbd_plus_strand_counts_with_strand_col.bedgraph,1
23+
rnhC,hbd,rep1,minus,/corexfs/schroedj/stranded_hbd_enrichment/rnhC/hbd/bootstrap/rnhC_rep1_hbd_minus_strand_counts_with_strand_col.bedgraph,1
24+
rnhC,hbd,rep2,plus,/corexfs/schroedj/stranded_hbd_enrichment/rnhC/hbd/bootstrap/rnhC_rep2_hbd_plus_strand_counts_with_strand_col.bedgraph,1
25+
rnhC,hbd,rep2,minus,/corexfs/schroedj/stranded_hbd_enrichment/rnhC/hbd/bootstrap/rnhC_rep2_hbd_minus_strand_counts_with_strand_col.bedgraph,1

0 commit comments

Comments
 (0)