Skip to content

Commit

Permalink
first test salmoon
Browse files Browse the repository at this point in the history
  • Loading branch information
mspodda committed May 24, 2024
1 parent 075051d commit 9c242d8
Show file tree
Hide file tree
Showing 8 changed files with 1,146 additions and 27 deletions.
4 changes: 2 additions & 2 deletions config/config_final.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# options
workflow_type: "custom_module" # Options: "polyA_module", "salmon_module", "custom_module", "custom_and_salmon_modules"
workflow_type: "salmon_module" # Options: "polyA_module", "salmon_module", "custom_module", "custom_and_salmon_modules"
freeze: GRCh38.primary_assembly.genome # genome version

############################################################
Expand Down Expand Up @@ -39,7 +39,7 @@ reference:
fasta:
GRCh38.primary_assembly.genome: $refdir/chr7.fa
fasta_salmon:
GRCh38.primary_assembly.genome: $refdir/gencode.v46.transcripts.fa
GRCh38.primary_assembly.genome: $refdir/BRAF_transcripts.fa
gtf:
GRCh38.primary_assembly.genome: $refdir/chr7.gtf
gtf_personal:
Expand Down
1,139 changes: 1,139 additions & 0 deletions test_data/BRAF_transcripts.fa

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions workflow/R/R_salmon.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
setwd(final_output)
source("config_all.R")
source("/home/runner/work/isoworm/isoworm/workflow/R/config_all.R")
lapply(my_packages, require, character.only = TRUE)

### Create a list with all txt files containing the samples for each tissues line
### Extract all samples from the txt list files for each tissues line typology
setwd(txt_samples)
Expand Down
6 changes: 3 additions & 3 deletions workflow/R/config_all.R
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ results_dir <- "/home/runner/work/isoworm/isoworm/results"
polyA_bam_dir <- ""
final_output <- "/home/runner/work/isoworm/isoworm/workflow/R"
## total salmon
indexDir <- file.path("")
fasta <- file.path("")
gtf <- file.path("")
indexDir <- file.path("/home/runner/work/isoworm/isoworm/test_data/salmon_index_v43")
fasta <- file.path("/home/runner/work/isoworm/isoworm/test_data/BRAF_transcripts.fa")
gtf <- file.path("/home/runner/work/isoworm/isoworm/test_data/chr7.gtf")

## functions
data_summary <- function(x) {
Expand Down
Binary file removed workflow/util/__pycache__/varsub.cpython-311.pyc
Binary file not shown.
Binary file removed workflow/util/__pycache__/varsub.cpython-312.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion workflow/util/script.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
cd results/fastq/$1
cd results/lung/fastq/$1
ffq --ftp $1 | grep -Eo '"url": "[^"]*"' | grep -o ftp.sra.*$ | sed 's/.$//' | xargs -n 1 curl -O -C - --silent --show-error
19 changes: 0 additions & 19 deletions workflow/util/star.sh

This file was deleted.

0 comments on commit 9c242d8

Please sign in to comment.