Skip to content

Commit

Permalink
Built on 2024-02-20, v0.1.53.3
Browse files Browse the repository at this point in the history
  • Loading branch information
saeidamiri1 committed Feb 20, 2024
1 parent e3ae1fe commit 55a2092
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
Binary file modified .DS_Store
Binary file not shown.
Binary file modified scrnabox.pip/.DS_Store
Binary file not shown.
Binary file modified scrnabox.pip/hto/.DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion scrnabox.pip/hto/pars/step1_par.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ par_automated_library_prep= "no"
# CellRanger counts pipeline parameters.
##################################################################################
## Path to reference genome
par_ref_dir='/path/to/CellRanger/reference/genome'
par_ref_dir_grch='/path/to/CellRanger/reference/genome'

## Minimum number of bases to retain for R1 sequence of gene expression assay. If you want to use this parameter uncomment the line below and define your par_r1_length.
#par_r1_length=20
Expand Down
Binary file modified scrnabox.pip/hto/scripts/.DS_Store
Binary file not shown.
6 changes: 3 additions & 3 deletions scrnabox.pip/hto/scripts/step1/create_cellranger_hto.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ cellranger count \\
--jobmode=\${SLURM_TEMPLATE} \\
EOF

# par_ref_dir
if [[ -n "${par_ref_dir}" ]]; then
# par_ref_dir_grch
if [[ -n "${par_ref_dir_grch}" ]]; then
cat <<EOF >> $OUTFILE
--transcriptome=\${par_ref_dir} \\
--transcriptome=\${par_ref_dir_grch} \\
EOF
fi

Expand Down
4 changes: 2 additions & 2 deletions scrnabox.pip/hto/scripts/step1/create_cellranger_hto_local.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ cellranger count \\
EOF

# par_ref_dir
if [[ -n "${par_ref_dir}" ]]; then
if [[ -n "${par_ref_dir_grch}" ]]; then
cat <<EOF >> $OUTFILE
--transcriptome=\${par_ref_dir} \\
--transcriptome=\${par_ref_dir_grch} \\
EOF
fi

Expand Down
2 changes: 1 addition & 1 deletion scrnabox.pip/scrna/pars/step1_par.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ par_automated_library_prep= "no"
# CellRanger counts pipeline parameters.
##################################################################################
## Path to reference genome
par_ref_dir='/path/to/CellRanger/reference/genome'
par_ref_dir_grch='/path/to/CellRanger/reference/genome'

## Minimum number of bases to retain for R1 sequence of gene expression assay. If you want to use this parameter uncomment the line below and define your par_r1_length.
#par_r1_length=20
Expand Down
6 changes: 3 additions & 3 deletions scrnabox.pip/scrna/scripts/step1/create_cellranger_scrna.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ cellranger count \\
--jobmode=\${SLURM_TEMPLATE} \\
EOF

# par_ref_dir
if [[ -n "${par_ref_dir}" ]]; then
# par_ref_dir_grch
if [[ -n "${par_ref_dir_grch}" ]]; then
cat <<EOF >> $OUTFILE
--transcriptome=\${par_ref_dir} \\
--transcriptome=\${par_ref_dir_grch} \\
EOF
fi

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ cellranger count \\
--libraries=\${LIBRARY} \\
EOF

# par_ref_dir
# par_ref_dir_grch
if [[ -n "${par_ref_dir_grch}" ]]; then
cat <<EOF >> $OUTFILE
--transcriptome=\${par_ref_dir_grch} \\
Expand Down

0 comments on commit 55a2092

Please sign in to comment.