Skip to content

Commit

Permalink
trying again
Browse files Browse the repository at this point in the history
  • Loading branch information
sgosline committed Jul 3, 2024
1 parent c805fec commit 04a7c10
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/database-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@ jobs:
run: |
docker run -v $PWD:/tmp sgosline/srp-exposome
- name: List files cwd
run: ls -la
run: ls -la /tmp/
- name: Copy files to artifact
run: |
mkdir expo-files
mv /tmp/sigGeneStats.csv expo-files
mv /tmp/*.csv expo-files
- name: upload artifact
uses: actions/upload-artifact@v2
with:
Expand All @@ -82,6 +82,8 @@ jobs:
- name: Run zfexp python command
run: |
docker run -v $PWD:/tmp sgosline/srp-zfexp
- name: List files cwd
run: ls -lah /tmp/
- name: Copy files to artifact
run: |
mkdir exp-files
Expand All @@ -107,6 +109,6 @@ jobs:
with:
name: expo-files
- name: List files cwd
run: ls -lah
run: ls -lah /tmp/
#zipfiles push to figshare

5 changes: 3 additions & 2 deletions zfExp/parseGexData.R
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ schema<-data.frame(Project=c(),


data.dir<-'https://raw.githubusercontent.com/PNNL-CompBio/srpAnalytics/main/data/zfExp'
out.dir='/tmp/'

generateGeneExamples<-function(genelist,chems){
library(ggplot2)
Expand Down Expand Up @@ -230,6 +231,6 @@ main<-function(args=c()){
}


out.dir='/tmp/'
ret = main(args<-c('../data/zfExp/ZF_gex.xlsx','../data/chemicalIdMapping.csv','../data/zfExp/allianceGenomeInfo.csv'))

main()#args<-c('../data/zfExp/ZF_gex.xlsx','../data/chemicalIdMapping.csv','../data/zfExp/allianceGenomeInfo.csv'))

0 comments on commit 04a7c10

Please sign in to comment.