|
1 |
| -<h1 align="center">Song</h1> |
| 1 | +# Song |
2 | 2 |
|
3 |
| -<p align="center">Quickly and reliably track genome metadata scattered across multiple Cloud storage systems.</p> |
| 3 | +Song functions as a file catalog system, tracking files and managing their metadata. To manage file transfers to and from object storage Song interacts with its required companion application, Score. |
4 | 4 |
|
5 |
| -<p align="center"><a href="http://www.overture.bio/products/song" target="_blank"><img alt="General Availability" title="General Availability" src="http://www.overture.bio/img/progress-horizontal-GA.svg" width="320" /></a></p> |
| 5 | +</br> |
6 | 6 |
|
7 |
| -[](https://song-docs.readthedocs.io/en/develop/introduction.html) |
8 |
| -[](http://slack.overture.bio) |
9 |
| - |
10 |
| -Project containing both the SONG microservice and CLI client. |
11 |
| -Both are written using JAVA 8 and Spring Boot. |
| 7 | +> |
| 8 | +> <div> |
| 9 | +> <img align="left" src="ov-logo.png" height="50"/> |
| 10 | +> </div> |
| 11 | +> |
| 12 | +> Song is part of [Overture](https://www.overture.bio/), a collection of open-source software microservices used to create platforms for researchers to organize and share genomics data.* |
| 13 | +> |
| 14 | +> |
12 | 15 |
|
13 | 16 | ## Documentation
|
14 | 17 |
|
15 |
| -Explore documentation with the Song [Read the Docs](https://song-docs.readthedocs.io/en/develop/introduction.html). |
16 |
| - |
17 |
| -## Build |
18 |
| - |
19 |
| -```bash |
20 |
| -$ mvn clean package |
21 |
| -``` |
22 |
| - |
23 |
| -## Running |
24 |
| - |
25 |
| -#### Command-line |
26 |
| - |
27 |
| -The source can be built and run using maven. |
28 |
| - |
29 |
| -```bash |
30 |
| -$ git clone [email protected]:icgc-dcc/SONG.git |
31 |
| -$ cd SONG/song-server |
32 |
| -$ mvn spring-boot:run -Dspring-boot.run.profiles=dev,test |
33 |
| -``` |
34 |
| - |
35 |
| -Both the server and client when compiled and built produce uber jars which can be run easily from the command line. |
36 |
| - |
37 |
| -```bash |
38 |
| -$ java -jar song-server-0.1.1-SNAPSHOT.jar --spring.profiles.active=dev,test |
39 |
| -``` |
40 |
| - |
41 |
| -## Docker Based Developement |
42 |
| - |
43 |
| -Several `make` targets are provided for locally deploying dependent services using docker. |
44 |
| -By using this, the developer will be able to replicate a live environment for song-server and song-client. |
45 |
| -It allows the user to develop locally, and test submissions, manifest creation, publishing, unpublishing and score uploads/downloads in an isolated environment. |
46 |
| - |
47 |
| -There are 2 modes: |
48 |
| - |
49 |
| -### 1. Developement Mode |
50 |
| - |
51 |
| -The purpose of this mode is to decrease the wait time between building and testing against dependent services. |
52 |
| -This mode will run a `mvn package` if the distribution files are missing and copy them into a container for them to be run. |
53 |
| -This method allows for fast developement, since the `mvn package` step is handled on the **Docker host**. |
54 |
| -In addition, the debug ports `5005` and `5006` are exposed for both `song-client` and `song-server`, respectively, allowing developers to debug the docker containers. |
55 |
| -This mode can be enabled using the `DEMO_MODE=0` override. This is the default behaviour if the variable `DEMO_MODE` is not defined. |
56 |
| - |
57 |
| -#### Debugging the song-client with IntelliJ |
58 |
| - |
59 |
| -Since the JVM debug port is exposed by the `song-client` docker container, IntelliJ can **remotely debug** a running docker container. |
60 |
| -To do this, a **docker image run profile** must be created with the configuration outputted by the `make intellij-song-client-config` command, which will output a basic upload command, however it can be modified to be any song-client command. |
61 |
| -Then, a **remote debug profile** must be created, with the following config: |
62 |
| - |
63 |
| -``` |
64 |
| -Host: localhost |
65 |
| -Port: 5005 |
66 |
| -Use module classpath: song-client |
67 |
| -``` |
68 |
| - |
69 |
| -and in the `Before launch: Activate tool window` section, click the `+` sign, and select `Launch docker before debug`. |
70 |
| -Then ensure the `Docker configuration` field is set to the name of the previously created **docker image run profile** and that `Custom Options` is set to `-p 5005:5005`. In order for the debugger to bind to the debug port in time, |
71 |
| -a delay needs to be introduced after starting the container. To do this, click the `+` sign again, and select `Launch docker before debug`, and select `Run External Tool` and a window will pop-up. Input the following: |
72 |
| - |
73 |
| -``` |
74 |
| -Name: Sleep for 5 seconds |
75 |
| -Program: /usr/bin/sleep |
76 |
| -Arguments: 5 |
77 |
| -``` |
78 |
| - |
79 |
| -and click `OK`. |
80 |
| - |
81 |
| -Finally, start debugging by simply running the **remote debug profile** and it will call the **docker image run profile** before launch. |
82 |
| - |
83 |
| -#### Executing the dockerized song-client in developement mode |
84 |
| - |
85 |
| -The script `./docker/tools/song-client-dev` takes the arguments runs the `song-client` service entry specified in the `docker-compose.yml` with them. For example, to ping the song server, run `./docker/tools/song-client ping` |
86 |
| - |
87 |
| -#### Debugging the song-server with IntelliJ |
88 |
| - |
89 |
| -Since the `song-server` is a server and exposes the 5006 debug port, configuration is much easier. First, start the server with `make clean start-song-server`. Then, create a **remote debug profile** in Intellij with the following configuration: |
90 |
| - |
91 |
| -``` |
92 |
| -Host: localhost |
93 |
| -Port: 5006 |
94 |
| -Use module classpath: song-server |
95 |
| -``` |
96 |
| - |
97 |
| -and then run it in debug mode. |
98 |
| - |
99 |
| -### 2. Demo Mode |
100 |
| - |
101 |
| -The purpose of this mode is to demo the current `song-server` and `song-client` code by building it in **inside the Docker image**, |
102 |
| -as opposed to the **Docker host** as is done in Developement mode and then running the containers. |
103 |
| -This mode will not run `mvn package` on the Docker host, but instead inside the Docker container. |
104 |
| -This method is very slow, since maven will download dependencies every time a build is triggered, however creates a completely isolated environment for testing. |
105 |
| -This mode can be enabled using the `DEMO_MODE=1` make variable override. For example, to start the song-server, the following command would be run: |
106 |
| - |
107 |
| -#### Executing the dockerized song-client in demo mode |
108 |
| - |
109 |
| -The script `./docker/tools/song-client-demo` takes the arguments runs the `song-client` service entry specified in the `docker-compose.yml` with them. For example, to ping the song server, run `./docker/tools/song-client ping` |
110 |
| - |
111 |
| -```bash |
112 |
| -make start-song-server DEMO_MODE=1 |
113 |
| -``` |
114 |
| - |
115 |
| -For more information on the different targets, run `make help` or read the comments above each target for a description |
116 |
| - |
117 |
| -## API |
118 |
| - |
119 |
| -The server provides swagger docs documenting the API. |
120 |
| - |
121 |
| -When running locally they can be accessed here: http://localhost:8080/swagger-ui.html |
122 |
| - |
123 |
| -## Dockerhub Configuration |
124 |
| - |
125 |
| -1. Edit build configurations by selecting the `Builds` tab at the top, then click `Build Configuration` |
126 |
| -2. Create a new build rule by clicking the `+` sign beside the `BUILD RULES` text |
127 |
| -3. Edit the configuration as follows: |
128 |
| - Source Type: `branch` |
129 |
| - Source: `develop` |
130 |
| - Docker Tag: `develop` |
131 |
| - Dockerfile Location: `Dockerfile` |
132 |
| - Build Context: `/` |
133 |
| - `Autobuild` is set to the ON position |
134 |
| - |
135 |
| - `Build Caching` is set to the ON position |
136 |
| - |
137 |
| -4. Then save the configuration |
138 |
| - |
139 |
| -### Docker Song Client |
140 |
| - |
141 |
| -The `song-client` is a CLI tool used for communicating with a `song-server`. |
142 |
| - |
143 |
| -#### Building |
144 |
| - |
145 |
| -Simply running `mvn clean package` will package the client into a `-dist.tar.gz` file. |
146 |
| - |
147 |
| -#### Configuration |
148 |
| - |
149 |
| -After unarchiving the distribution, it can be configured via the `./conf/application.yml` file. Alternatively, the client can be configured through environment variables, which take presedence over the `application.yml` config. |
150 |
| -For example, to run the `song-client config` command using environment variables with the same values as the `application.yml` configuration below: |
151 |
| - |
152 |
| -```yaml |
153 |
| -client: |
154 |
| - serverUrl: http://localhost:8080 |
155 |
| - studyId: ABC123-CA |
156 |
| - programName: sing |
157 |
| - debug: true |
158 |
| - accessToken: myAccessToken |
159 |
| -``` |
160 |
| -
|
161 |
| -could be done via: |
162 |
| -
|
163 |
| -```bash |
164 |
| -CLIENT_SERVER_URL=http://localhost:8080 \ |
165 |
| -CLIENT_STUDY_ID=ABC123-CA \ |
166 |
| -CLIENT_PROGRAM_NAME=sing \ |
167 |
| -CLIENT_DEBUG=true \ |
168 |
| -CLIENT_ACCESS_TOKEN=myAccessToken \ |
169 |
| -./bin/sing config |
170 |
| -``` |
171 |
| - |
172 |
| -#### Running the client locally |
173 |
| - |
174 |
| -The `song-client` can be run using the `./bin/sing` script. |
| 18 | +Technical resources for those working with or contributing to the project are available from our official documentation site, the following content can also be read and updated within the `/docs` folder of this repository. |
175 | 19 |
|
176 |
| -#### Running the client using Docker |
| 20 | +- **[Song Overview](https://docs.overture.bio/docs/core-software/Song/overview)** |
| 21 | +- [**Setting up the Development Enviornment**](https://docs.overture.bio/docs/core-software/Song/setup) |
| 22 | +- [**Common Usage Docs**](https://docs.overture.bio/docs/core-software/Song/setup) |
177 | 23 |
|
178 |
| -Alternatively, the `song-client` can be run using docker. To run the dockerized client with the configurations above, the following command could be executed: |
| 24 | +## Development Environment |
179 | 25 |
|
180 |
| -```bash |
181 |
| -docker run --rm \ |
182 |
| - -e 'CLIENT_SERVER_URL=http://localhost:8080' \ |
183 |
| - -e 'CLIENT_STUDY_ID=ABC123-CA' \ |
184 |
| - -e 'CLIENT_PROGRAM_NAME=sing' \ |
185 |
| - -e 'CLIENT_DEBUG=true' \ |
186 |
| - -e 'CLIENT_ACCESS_TOKEN=myAccessToken' \ |
187 |
| - overture/song-client:latest \ |
188 |
| - sing config |
189 |
| -``` |
| 26 | +- [Java 11 (OpenJDK)](https://openjdk.java.net/projects/jdk/11/) |
| 27 | +- [Maven 3.5+](https://maven.apache.org/) (or use provided wrapper) |
| 28 | +- [VS Code](https://code.visualstudio.com/) or preferred Java IDE |
| 29 | +- [Docker](https://www.docker.com/) Container platform |
190 | 30 |
|
191 |
| -By default, the `song-client` is run as the root user. To run as a non-root user, add the switch `-u song` which will run the command as a predefined `song` user: |
| 31 | +## Support & Contributions |
192 | 32 |
|
193 |
| -```bash |
194 |
| -docker run --rm \ |
195 |
| - -u song \ |
196 |
| - -e 'CLIENT_SERVER_URL=http://localhost:8080' \ |
197 |
| - -e 'CLIENT_STUDY_ID=ABC123-CA' \ |
198 |
| - -e 'CLIENT_PROGRAM_NAME=sing' \ |
199 |
| - -e 'CLIENT_DEBUG=true' \ |
200 |
| - -e 'CLIENT_ACCESS_TOKEN=myAccessToken' \ |
201 |
| - overture/song-client:latest \ |
202 |
| - sing config |
203 |
| -``` |
| 33 | +- For support, feature requests, and bug reports, please see our [Support Guide](https://docs.overture.bio/community/support). |
204 | 34 |
|
205 |
| -or run it as your current user: |
| 35 | +- For detailed information on how to contribute to this project, please see our [Contributing Guide](https://docs.overture.bio/docs/contribution). |
206 | 36 |
|
207 |
| -```bash |
208 |
| -docker run --rm \ |
209 |
| - -u $(id -u):$(id -g) \ |
210 |
| - -e 'CLIENT_SERVER_URL=http://localhost:8080' \ |
211 |
| - -e 'CLIENT_STUDY_ID=ABC123-CA' \ |
212 |
| - -e 'CLIENT_PROGRAM_NAME=sing' \ |
213 |
| - -e 'CLIENT_DEBUG=true' \ |
214 |
| - -e 'CLIENT_ACCESS_TOKEN=myAccessToken' \ |
215 |
| - overture/song-client:latest \ |
216 |
| - sing config |
217 |
| -``` |
| 37 | +## Related Software |
218 | 38 |
|
219 |
| -Running as the host user is useful when the `song-client` needs to write to a mounted volume |
| 39 | +The Overture Platform includes the following Overture Components: |
220 | 40 |
|
221 |
| -#### Outputting data from the song-client via Docker |
| 41 | +</br> |
222 | 42 |
|
223 |
| -Some song-client commands (such as `sing manifest` and `sing export`) output a file to a path. |
224 |
| -When running the docker container, it maybe preferable to output the file to the docker host's filesystem, instead of the containers file system. |
225 |
| -To do this, a directory from the docker host must be mounted into the song-client docker container. |
226 |
| - |
227 |
| -For example, the following command will generate a manifest file called `output-manifest.txt` in the directory `./mydir`: |
| 43 | +|Software|Description| |
| 44 | +|---|---| |
| 45 | +|[Score](https://github.com/overture-stack/score/)| Transfer data to and from any cloud-based storage system | |
| 46 | +|[Song](https://github.com/overture-stack/song/)| Catalog and manage metadata associated to file data spread across cloud storage systems | |
| 47 | +|[Maestro](https://github.com/overture-stack/maestro/)| Organizing your distributed data into a centralized Elasticsearch index | |
| 48 | +|[Arranger](https://github.com/overture-stack/arranger/)| A search API with reusable search UI components | |
| 49 | +|[Stage](https://github.com/overture-stack/stage)| A React-based web portal scaffolding | |
| 50 | +|[Lyric](https://github.com/overture-stack/lyric)| A model-agnostic, tabular data submission system | |
| 51 | +|[Lectern](https://github.com/overture-stack/lectern)| Schema Manager, designed to validate, store, and manage collections of data dictionaries. | |
228 | 52 |
|
229 |
| -```bash |
| 53 | +If you'd like to get started using our platform [check out our quickstart guides](https://docs.overture.bio/guides/getting-started) |
230 | 54 |
|
231 |
| -# Ensure the current user owns mydir inorder to write to it from within the container |
232 |
| -mkdir -p ./mydir |
| 55 | +## Funding Acknowledgement |
233 | 56 |
|
234 |
| -docker run --rm \ |
235 |
| - -u $(id -u):$(id -g) \ |
236 |
| - -v $PWD/mydir:/data \ |
237 |
| - -e 'CLIENT_SERVER_URL=http://localhost:8080' \ |
238 |
| - -e 'CLIENT_STUDY_ID=ABC123-CA' \ |
239 |
| - -e 'CLIENT_PROGRAM_NAME=sing' \ |
240 |
| - -e 'CLIENT_DEBUG=true' \ |
241 |
| - -e 'CLIENT_ACCESS_TOKEN=myAccessToken' \ |
242 |
| - overture/song-client:latest \ |
243 |
| - sing manifest -a someAnalysisId -d /data -f /data/output-manifest.txt |
244 |
| -``` |
245 |
| - |
246 |
| -### Notes |
247 |
| - |
248 |
| -When running with the secure profile enabled, an oauth2 server is needed. |
249 |
| - |
250 |
| -Test |
| 57 | +Overture is supported by grant #U24CA253529 from the National Cancer Institute at the US National Institutes of Health, and additional funding from Genome Canada, the Canada Foundation for Innovation, the Canadian Institutes of Health Research, Canarie, and the Ontario Institute for Cancer Research. |
0 commit comments