-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates to better deal with missing aliquos and read groups
- Loading branch information
1 parent
8aca724
commit 83cdc6f
Showing
7 changed files
with
55 additions
and
322 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,21 @@ | ||
source discovery_config.sh | ||
|
||
CMD="bash src/process_catalog.sh $@ $PROJECT $CASES" | ||
LOGE="logs/process_catalog3.err" | ||
LOGO="logs/process_catalog3.out" | ||
|
||
#CMD="bash src/process_catalog.sh $@ $PROJECT $CASES > $LOGO 2> $LOGE " | ||
CMD="bash src/process_catalog.sh $@ $PROJECT $CASES " | ||
>&2 echo Running: $CMD | ||
>&2 echo Writing logs to $LOGO and $LOGE | ||
eval $CMD | ||
|
||
echo ' ' | ||
>&2 echo The following errors were observed | ||
grep -h -i error $LOGE $LOGO | sort -u | ||
|
||
echo ' ' | ||
>&2 echo The following warnings were observed | ||
# ignoring file exist warnings, whihch are common on reruns | ||
grep -h -i warning $LOGE $LOGO | grep -v "exists. Deleting" | sort -u | ||
|
||
|
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 @@ | ||
case disease ethnicity gender race days_to_birth | ||
C3L-01838 unknown not hispanic or latino male white -25663 | ||
C3L-01839 unknown not hispanic or latino male white -25831 | ||
C3L-01840 unknown not hispanic or latino female white -20522 | ||
C3L-01861 unknown not hispanic or latino male white -20974 |
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
Oops, something went wrong.