|
7 | 7 |
|
8 | 8 | Simple distributed data manipulation and processing routines for Julia.
|
9 | 9 |
|
| 10 | + |
| 11 | +#### Acknowledgements |
| 12 | + |
10 | 13 | This was originally developed for
|
11 |
| -[`GigaSOM.jl`](https://github.com/LCSB-BioCore/GigaSOM.jl); DistributedData.jl package |
12 |
| -contains the separated-out lightweight distributed-processing framework that |
13 |
| -was used in `GigaSOM.jl`. |
| 14 | +[`GigaSOM.jl`](https://github.com/LCSB-BioCore/GigaSOM.jl); |
| 15 | +`DistributedData.jl` package contains the separated-out lightweight |
| 16 | +distributed-processing framework that was used in `GigaSOM.jl`. |
| 17 | + |
| 18 | +`DistributedData.jl` was developed at the |
| 19 | +Luxembourg Centre for Systems Biomedicine of the University of Luxembourg ([uni.lu/lcsb](https://www.uni.lu/lcsb)). |
| 20 | +The development was supported by |
| 21 | +European Union ELIXIR Staff Exchange programme 2020 ([elixir-europe.org](https://elixir-europe.org/)), and |
| 22 | +European Union's Horizon 2020 Programme under PerMedCoE project ([permedcoe.eu](https://www.permedcoe.eu/)) agreement no. 951773. |
| 23 | + |
| 24 | +<img src="docs/src/assets/unilu.svg" alt="Uni.lu logo" height="64px"> <img src="docs/src/assets/lcsb.svg" alt="LCSB logo" height="64px"> <img src="docs/src/assets/elixir.svg" alt="ELIXIR logo" height="64px"> <img src="docs/src/assets/permedcoe.svg" alt="PerMedCoE logo" height="64px"> |
14 | 25 |
|
15 | 26 | ## Why?
|
16 | 27 |
|
17 |
| -DistributedData.jl provides a very simple, imperative and straightforward way to move your |
18 |
| -data around a cluster of Julia processes created by the |
| 28 | +`DistributedData.jl` provides a very simple, imperative and straightforward way |
| 29 | +to move your data around a cluster of Julia processes created by the |
19 | 30 | [`Distributed`](https://docs.julialang.org/en/v1/stdlib/Distributed/) package,
|
20 | 31 | and run computation on the distributed data pieces. The main aim of the package
|
21 | 32 | is to avoid anything complicated-- the first version used in
|
@@ -133,7 +144,7 @@ julia> gather_array(dataset) # download the data from workers to a sing
|
133 | 144 | ⋮
|
134 | 145 | ```
|
135 | 146 |
|
136 |
| -## Using DistributedData.jl in HPC environments |
| 147 | +## Using `DistributedData.jl` in HPC environments |
137 | 148 |
|
138 | 149 | You can use
|
139 | 150 | [`ClusterManagers`](https://github.com/JuliaParallel/ClusterManagers.jl)
|
|
0 commit comments