You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have check.sh in ldsc directory where i am running this job script.
My bed file is in directory /home/saz22/Chiou.CRE_bed/GSE163160_T1D_snATAC.cCREs.bed
while 1000G_EUR_Phase3_plink is in directory with 1000G.EUR.QC.1.bim ,these kind of files so I wrote as
/home/saz22/LDSC/ochroGWAS/1000G.EUR.hg38.$val.bim
I am submitting this job script but its getting exit code 2.
I added activate ldsc ( ldsc environment) and added that in script because ldsc has update from python 2 to 3 i have wrote python 3 in script.
Even when i remove activate ldsc job is getting failed. I actually tried with only script provided by you even then its getting failed. I am writing both scripts which are not working,
Can you please look into it and tell me whats the error and how to make it run.
I have check.sh in ldsc directory where i am running this job script.
My bed file is in directory /home/saz22/Chiou.CRE_bed/GSE163160_T1D_snATAC.cCREs.bed
while 1000G_EUR_Phase3_plink is in directory with 1000G.EUR.QC.1.bim ,these kind of files so I wrote as
/home/saz22/LDSC/ochroGWAS/1000G.EUR.hg38.$val.bim
I am submitting this job script but its getting exit code 2.
I added activate ldsc ( ldsc environment) and added that in script because ldsc has update from python 2 to 3 i have wrote python 3 in script.
Even when i remove activate ldsc job is getting failed. I actually tried with only script provided by you even then its getting failed. I am writing both scripts which are not working,
Can you please look into it and tell me whats the error and how to make it run.
module load python/2.7
module load bedtools/2.30.0
source ~/ENV/bin/activate
vals=($(seq 1 1 22))
for val in ${vals[@]}; do
echo $val
declare -a files= (/home/saz22/Chiou.CRE_bed/GSE163160_T1D_snATAC.cCREs.bed)
OR THIS AS WELL:
module purge
module load miniconda
conda activate test
vals=($(seq 1 1 22))
for val in ${vals[@]}; do
echo $val
declare -a files= (/home/saz22/Chiou.CRE_bed/GSE163160_T1D_snATAC.cCREs.bed)
The text was updated successfully, but these errors were encountered: