-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from OpenKBC/dev-branch
Version up
- Loading branch information
Showing
5 changed files
with
15 additions
and
6 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
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
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,4 +1,4 @@ | ||
FROM swiri021/snakemake-gui-controller:v1.0.3 | ||
FROM swiri021/snakemake-gui-controller:v1.0.4 | ||
|
||
COPY . . | ||
RUN pip install -r requirements.txt |
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,8 +1,12 @@ | ||
from sys import argv | ||
import pandas as pd | ||
import time | ||
|
||
count_start = 0 | ||
with open(argv[1], "r") as f: | ||
data = f.read() | ||
|
||
time.sleep(3) | ||
|
||
with open(argv[2], "w") as rw: | ||
rw.write(data+("-this is test result")) |
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,9 +1,12 @@ | ||
from sys import argv | ||
import time | ||
|
||
count_start = 0 | ||
with open(argv[1], "r") as f: | ||
for line in f.readlines(): | ||
count_start+=int(line) | ||
|
||
time.sleep(3) | ||
|
||
with open(argv[2], "w") as rw: | ||
rw.write(str(count_start)) |