Skip to content

Commit 059774f

Browse files
committed
updating readme
1 parent 596a5cd commit 059774f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,19 @@ library(HistogramZoo)
2424
set.seed(271828)
2525

2626
# Generating Data
27-
my_data = rnorm(10000, mean = 50, sd = 20)
28-
histogram_data = observations_to_histogram(my_data, histogram_bin_width=5)
27+
my_data <- rnorm(10000, mean = 50, sd = 20)
28+
histogram_data <- observations_to_histogram(my_data, histogram_bin_width=5)
2929

3030
# Segmentation and fitting distributions
31-
results = segment_and_fit(histogram_data, eps = 1)
31+
results <- segment_and_fit(histogram_data, eps = 1)
3232

3333
# Summarizing results
34-
results_table = summarize_results(results)
34+
results_table <- summarize_results(results)
3535

3636
# Plotting
3737
create_coverageplot(results)
3838

3939
```
4040

4141
## Additional features
42-
HistogramZoo supports common genomic data types including bigWig files and BED files. HistogramZoo supports both genomic and transcriptomic coordinate systems. For more information, refer to the HistogramZoo [vignette](https://github.com/uclahs-cds/public-R-HistogramZoo/tree/main/vignettes/HistogramZoo.html).
42+
HistogramZoo supports common genomic data types including bigWig files and BED files. HistogramZoo supports both genomic and transcriptomic coordinate systems.

0 commit comments

Comments
 (0)