This repository has been archived by the owner on Jul 16, 2024. It is now read-only.
-
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 #30 from moka-guys/v1.10
add support for TSO and update some documentation. fix#28 fix#29
- Loading branch information
Showing
12 changed files
with
124 additions
and
22 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,5 +1,4 @@ | ||
*.pyc | ||
*.egg-info | ||
wscleaner/wscleaner/config.json | ||
wscleaner/test/test_dir*.txt | ||
wscleaner/test/data |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Metadata-Version: 1.10 | ||
Name: wscleaner | ||
Version: 1.10 | ||
Summary: Package to remove uploaded runfolders from the Viapath Genome Informatics NGS workstation | ||
Home-page: https://github.com/moka-guys/workstation_housekeeping | ||
Author: Nana Mensah | ||
Author-email: [email protected] | ||
License: MIT | ||
Description: UNKNOWN | ||
Platform: UNKNOWN | ||
Requires-Python: >=3.6.8 |
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,14 @@ | ||
README.md | ||
setup.py | ||
test/test_all.py | ||
wscleaner/__init__.py | ||
wscleaner/lib.py | ||
wscleaner/main.py | ||
wscleaner/mokaguys_logger.py | ||
wscleaner.egg-info/PKG-INFO | ||
wscleaner.egg-info/SOURCES.txt | ||
wscleaner.egg-info/dependency_links.txt | ||
wscleaner.egg-info/entry_points.txt | ||
wscleaner.egg-info/not-zip-safe | ||
wscleaner.egg-info/requires.txt | ||
wscleaner.egg-info/top_level.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 |
---|---|---|
@@ -0,0 +1 @@ | ||
|
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,3 @@ | ||
[console_scripts] | ||
wscleaner = wscleaner.main:main | ||
|
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 @@ | ||
|
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,5 @@ | ||
docutils>=0.3 | ||
dxpy==0.279.0 | ||
pytest==4.4.0 | ||
pytest-cov==2.6.1 | ||
Sphinx==2.0.1 |
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 @@ | ||
wscleaner |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
|
||
# Activate wscleaner environment | ||
eval "$(/usr/local/bin/miniconda3/bin/conda shell.bash hook)" # Add conda environment to system path | ||
conda activate wscleaner_test | ||
|
||
# Set variables | ||
logfile="/usr/local/src/mokaguys/automate_demultiplexing_logfiles/wscleaner_logs/$(date -d now +%y%m%d)_wscleaner.log" | ||
runfolders="/media/data3/share" | ||
|
||
# Execute | ||
/usr/local/bin/miniconda3/envs/wscleaner_test/bin/python3 /usr/local/src/mokaguys/development_area/workstation_housekeeping/wscleaner/wscleaner/main.py $runfolders --logfile $logfile --dry-run --min-age=1 |