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
If a user specifies a full path for the output file prefix (e.g. /RNA_seq_1/lyc/project/lxm/scte/e14/e14), this is not used as the parent directory for the creation of the _scTEtmp/ directories. These directories are all created relative to the current working directory instead, with the e14 prefix
This would not be an issue normally (assuming the user has write permission in the current directory), but creates a problem in a later call to Countexpression() which uses the full path args.out and not the shortened outname. This leads to a file not found error if the user started scTE from anywhere but the same directory as specified in the -o parameter
If a user specifies a full path for the output file prefix (e.g.
/RNA_seq_1/lyc/project/lxm/scte/e14/e14
), this is not used as the parent directory for the creation of the _scTEtmp/ directories. These directories are all created relative to the current working directory instead, with thee14
prefixscTE/bin/scTE
Line 106 in 566f6ab
The variable
outname
is created in this line, which keeps only the basename of the args.out parameterscTE/bin/scTE
Line 93 in 566f6ab
This would not be an issue normally (assuming the user has write permission in the current directory), but creates a problem in a later call to
Countexpression()
which uses the full pathargs.out
and not the shortenedoutname
. This leads to a file not found error if the user started scTE from anywhere but the same directory as specified in the -o parameterscTE/bin/scTE
Line 155 in 566f6ab
This is the source of the error discussed in #70
The text was updated successfully, but these errors were encountered: