Skip to content

archieenninful/DBiT-start

 
 

Repository files navigation


03/26/2021:

```
# Filter out raw data that do not contain linker sequence
# edit 00_1.qc_raw_data_L1.sh & 00_2.qc_raw_data_L2.sh for each sample
sbatch 00_1.qc_raw_data_L1.sh
sbatch 00_2.qc_raw_data_L2.sh
```

```
# Rearrange UMI/barcode compatible for st-pipeline
# edit 1-effective.sh
dSQ --job-file 1-effective.sh --mail-type=ALL --partition=scavenge --cpus-per-task=16 --mem-per-cpu=4g --submit
```

```
# Alignment
# for 2-align-step1.pl
wget https://cpan.metacpan.org/authors/id/M/MA/MANWAR/SVG-2.85.tar.gz
tar -zxvf SVG-2.85.tar.gz
perl Makefile.PL PREFIX=/gpfs/ysm/project/fan/gs592/01_Spatial_Organoid/00.bin/SVG-2.85/mybuild
make
make install
export PERL5LIB=/gpfs/ysm/project/fan/gs592/01_Spatial_Organoid/00.bin/SVG-2.85/mybuild/share/perl5:$PERL5LIB
```

```
# st-pipeline
# edit 2-st-pipeline.sh & stp.sh
srun --pty -p interactive -c 8 --mem=64g bash
module load miniconda
conda activate st-pipeline
dSQ --job-file stp.sh --mail-type=ALL --partition=scavenge --cpus-per-task=16 --mem-per-cpu=4g --submit
# edit converttonames.sh
sh converttonames.sh
```

# 07/08/2021
# Updating Seurat package removed my.background argument in SpatialPlots
# To fix:
# run 
# install.packages("/gpfs/ysm/project/fan/gs592/01_Spatial_Organoid/00.software/seurat.tar.gz",repos=NULL, type = "source")

# 12/16/2021
# Install clusterProfiler package
# run below
packageurl <- "https://cran.r-project.org/src/contrib/Archive/rvcheck/rvcheck_0.1.8.tar.gz"
install.packages(packageurl, repos=NULL, type="source")
remove.packages("clusterProfiler")
if (!requireNamespace("BiocManager", quietly = TRUE))
  install.packages("BiocManager")
BiocManager::install("clusterProfiler")

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 95.5%
  • R 4.5%