-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/erlang' into dev
- Loading branch information
Showing
167 changed files
with
3,021 additions
and
22,959 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,17 @@ | ||
/target | ||
/bin | ||
/.classpath | ||
/.settings | ||
/.project | ||
.eunit | ||
deps | ||
*.o | ||
*.beam | ||
*.plt | ||
erl_crash.dump | ||
ebin | ||
rel/example_project | ||
.concrete/DEV_MODE | ||
.rebar | ||
*~ | ||
|
||
*.iml | ||
.idea | ||
/conf/** | ||
src/cf_scan.erl | ||
src/cf_parse.erl | ||
src/cf_prescan.erl | ||
doc | ||
_build | ||
rebar.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
language: java | ||
jdk: | ||
- oraclejdk8 | ||
- oraclejdk7 | ||
- openjdk7 | ||
|
||
language: erlang | ||
otp_release: | ||
# - 18.3 | ||
- 18.2.1 | ||
- 18.2 | ||
- 18.1 | ||
- 18.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
@InProceedings{Brandt2015, | ||
Title = {Cuneiform: A Functional Language for Large Scale Scientific Data Analysis}, | ||
Author = {Brandt, J{\"o}rgen and Bux, Marc and Leser, Ulf}, | ||
Booktitle = {Proceedings of the Workshops of the EDBT/ICDT}, | ||
Year = {2015}, | ||
|
||
Address = {Brussels, Belgium}, | ||
Month = {March}, | ||
Pages = {17--26}, | ||
Volume = {1330}, | ||
|
||
Abstract = {The need to analyze massive scientific data sets on the one hand and the availability of distributed compute resources with an increasing number of CPU cores on the other hand have promoted the development of a variety of languages and systems for parallel, distributed data analysis. Among them are data-parallel query languages such as Pig Latin or Spark as well as scientific workflow languages such as Swift or Pegasus DAX. While data-parallel query languages focus on the exploitation of data parallelism, scientific workflow languages focus on the integration of external tools and libraries. However, a language that combines easy integration of arbitrary tools, treated as black boxes, with the ability to fully exploit data parallelism does not exist yet. Here, we present Cuneiform, a novel language for large-scale scientific data analysis. We highlight its functionality with respect to a set of desirable features for such languages, introduce its syntax and semantics by example, and show its flexibility and conciseness with use cases, including a complex real-life workflow from the area of genome research. Cuneiform scripts are executed dynamically on the workflow execution platform Hi-WAY which is based on Hadoop YARN. The language Cuneiform, including tool support for programming, workflow visualization, debugging, logging, and provenance-tracing, and the parallel execution engine Hi-WAY are fully implemented.}, | ||
Doi = {10.13140/RG.2.1.3547.6561}, | ||
Url = {http://ceur-ws.org/Vol-1330/paper-03.pdf} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
PWD=$(shell pwd) | ||
|
||
all: compile | ||
|
||
install: compile | ||
ln -sf $(PWD)/_build/default/bin/cuneiform /usr/local/bin/cuneiform | ||
|
||
compile: | ||
rebar3 escriptize | ||
|
||
dev: | ||
rebar3 do escriptize, eunit, dialyzer, cover, edoc | ||
|
||
clean: | ||
rm -rf .rebar | ||
rm -rf _build | ||
rm -rf doc | ||
rm -f rebar.lock | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
24 changes: 0 additions & 24 deletions
24
...s/cuneiform-cfide/src/main/java/de/huberlin/wbi/cuneiform/cfide/editor/DarkStyleConf.java
This file was deleted.
Oops, something went wrong.
216 changes: 0 additions & 216 deletions
216
...ddons/cuneiform-cfide/src/main/java/de/huberlin/wbi/cuneiform/cfide/editor/EditPanel.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.