Closed davemcg closed 5 years ago
@vinay-swamy , could you get this done ASAP? I'm stuck on many steps until this is done. Implement this as a separate rule.
yup working on it now
@davemcg should work now
Now done (found some typos). Please follow this notation style (separate lines for each input/output with explicit names and I give all inputs and outputs as arguments). You made a typo with your hard coded output not matching the Snakefile.
# output sample metadata and gene/tx lists for eyeIntegration
rule make_meta_info:
input:
expand('results/smoothed_filtered_tpms_{level}.csv',level=['gene','transcript'])
params:
working_dir = config['working_dir']
output:
metadata = 'results/core_tight.Rdata',
tx_names = 'results/tx_names.Rdata',
gene_names = 'results/gene_names.Rdata'
shell:
'''
module load R
Rscript {config[scripts_dir]}/make_meta_info.R \
{config[sampleFile]} \
{ref_GTF_basic} \
{config[sqlfile]} \
{input} \
{params.working_dir} \
{output.metadata} \
{output.tx_names} \
{output.gene_names}
'''
@vinay-swamy I've re-opened as:
I'll fix this