Skip to content

Commit

Permalink
Merge pull request #51 from bedapub/report
Browse files Browse the repository at this point in the history
removed ml
  • Loading branch information
grexor authored Feb 7, 2024
2 parents 45b85a7 + d38a586 commit f07fb4c
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 10 deletions.
3 changes: 0 additions & 3 deletions splicekit/core/anchors.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ def write_jobs_featureCounts(library_type='single-end', library_strand='NONE'):
#SBATCH --output={logs_dir}/{anchor_type}_anchors_{sample_id}.out # Output file
#SBATCH --error={logs_dir}/{anchor_type}_anchors_{sample_id}.err # Error file
module load Subread/2.0.3-GCC-9.3.0
{container} featureCounts {library_type_insert}-s {library_strand_insert} -M -O -T 12 -F GTF -f -t anchor -g {anchor_type}_anchor_id -a {gtf_fname} -o {out_fname} {sam_fname}
# featureCount outputs command as first line of file, get rid of this first line and replace header for further parsing
# next, we are only interested in the 1st and 7th column (anchor_id and count)
Expand All @@ -105,8 +104,6 @@ def write_jobs_featureCounts(library_type='single-end', library_strand='NONE'):
#BSUB -o {logs_dir}/{anchor_type}_anchors_{sample_id}.out # Output file
#BSUB -e {logs_dir}/{anchor_type}_anchors_{sample_id}.err # Error file
ml .testing
ml Subread/2.0.3-GCC-9.3.0
{container} featureCounts {library_type_insert}-s {library_strand_insert} -M -O -T 12 -F GTF -f -t anchor -g {anchor_type}_anchor_id -a {gtf_fname} -o {out_fname} {sam_fname}
# featureCount outputs command as first line of file, get rid of this first line and replace header for further parsing
# next, we are only interested in the 1st and 7th column (anchor_id and count)
Expand Down
3 changes: 0 additions & 3 deletions splicekit/core/exons.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ def write_jobs_featureCounts(library_type='single-end', library_strand='NONE'):
#SBATCH --output={logs_dir}/exons_{sample_id}.out # Output file
#SBATCH --error={logs_dir}/exons_{sample_id}.err # Error file
module load Subread/2.0.3-GCC-9.3.0
{container} featureCounts {library_type_insert}-s {library_strand_insert} -M -O -T 12 -F GTF -f -t exon -g exon_id -a {gtf_fname} -o {out_fname} {sam_fname}
# featureCount outputs command as first line of file, get rid of this first line and replace header for further parsing
# next, we are only interested in the 1st and 7th column (exon_id and count)
Expand All @@ -110,8 +109,6 @@ def write_jobs_featureCounts(library_type='single-end', library_strand='NONE'):
#BSUB -o {logs_dir}/exons_{sample_id}.out # Output file
#BSUB -e {logs_dir}/exons_{sample_id}.err # Error file
ml .testing
ml Subread/2.0.3-GCC-9.3.0
{container} featureCounts {library_type_insert}-s {library_strand_insert} -M -O -T 12 -F GTF -f -t exon -g exon_id -a {gtf_fname} -o {out_fname} {sam_fname}
# featureCount outputs command as first line of file, get rid of this first line and replace header for further parsing
# next, we are only interested in the 1st and 7th column (exon_id and count)
Expand Down
4 changes: 0 additions & 4 deletions splicekit/core/genes.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,6 @@ def write_jobs_featureCounts(library_type='single-end', library_strand='NONE'):
#SBATCH --output={logs_dir}/genes_{sample_id}.out # Output file
#SBATCH --error={logs_dir}/genes_{sample_id}.err # Error file
module load Subread/2.0.3-GCC-9.3.0
{container} featureCounts {library_type_insert}-s {library_strand_insert} -M -O -T 12 -F GTF -f -t exon -g gene_id -a {gtf_fname} -o {out_fname} {sam_fname}
# featureCount outputs command as first line of file, get rid of this first line and replace header for further parsing
# next, we are only interested in the 1st and 7th column (gene_id and count)
Expand All @@ -111,8 +109,6 @@ def write_jobs_featureCounts(library_type='single-end', library_strand='NONE'):
#BSUB -o {logs_dir}/genes_{sample_id}.out # Output file
#BSUB -e {logs_dir}/genes_{sample_id}.err # Error file
ml .testing
ml Subread/2.0.3-GCC-9.3.0
{container} featureCounts {library_type_insert}-s {library_strand_insert} -M -O -T 12 -F GTF -f -t exon -g gene_id -a {gtf_fname} -o {out_fname} {sam_fname}
# featureCount outputs command as first line of file, get rid of this first line and replace header for further parsing
# next, we are only interested in the 1st and 7th column (gene_id and count)
Expand Down

0 comments on commit f07fb4c

Please sign in to comment.