-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9e0d0cc
commit 586611b
Showing
9 changed files
with
479 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#!/bin/sh | ||
|
||
cd /digger/tests/human/IGH/verify | ||
|
||
bash -x run_digger.bat | ||
|
||
rv=$? | ||
if [[ $rv != 0 ]] | ||
then | ||
echo "Test failed." | ||
exit 1 | ||
fi | ||
|
||
if [ ! -f "IMGT000035.csv" ]; then | ||
echo "Output not created." | ||
exit 1 | ||
fi | ||
|
||
diff model_IMGT000035.csv IMGT000035.csv | ||
|
||
rv=$? | ||
if [[ $rv != 0 ]] | ||
then | ||
echo "Output does not match expected content" | ||
exit 1 | ||
fi | ||
|
||
echo "Test passed." | ||
exit 0 |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
This is a deliberately truncated version of IMGT000035 intended to be used to test Docker builds |
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
|
||
|
||
type: V | ||
Functional sequences reported by digger but not by IMGT: | ||
4969,5264 imgt_match: IGHV7-81*01 imgt_func: ORF digger_match: IGHV7-81*01 digger_func: functional notes: | ||
469062,469353 imgt_match: IGHV3-38*02 imgt_func: ORF digger_match: IGHV3-38*02 digger_func: functional notes: | ||
|
||
Functional sequences reported by IMGT but not by digger: | ||
|
||
Functional sequences reported by both IMGT and digger but with different sequences: | ||
|
||
|
||
type: D | ||
Functional sequences reported by digger but not by IMGT: | ||
|
||
Functional sequences reported by IMGT but not by digger: | ||
|
||
Functional sequences reported by both IMGT and digger but with different sequences: | ||
|
||
|
||
type: J | ||
Functional sequences reported by digger but not by IMGT: | ||
1014594,1014646 imgt_match: IGHJ2*01 imgt_func: ORF digger_match: IGHJ2*01 digger_func: functional notes: | ||
|
||
Functional sequences reported by IMGT but not by digger: | ||
|
||
Functional sequences reported by both IMGT and digger but with different sequences: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
|
||
|
||
type: V | ||
Functional sequences reported by digger but not by IMGT: | ||
4969,5264 imgt_match: IGHV7-81*01 imgt_func: ORF digger_match: IGHV7-81*01 digger_func: functional notes: | ||
..imgt: noncanonical V-HEPTAMER: caccatg instead of cacagtg, noncanonical V-NONAMER: tcagaaatc instead of acacaaacc | ||
469062,469353 imgt_match: IGHV3-38*02 imgt_func: ORF digger_match: IGHV3-38*02 digger_func: functional notes: | ||
..imgt: this gene has not been found rearranged (non-annotation difference). | ||
|
||
Functional sequences reported by IMGT but not by digger: | ||
|
||
Functional sequences reported by both IMGT and digger but with different sequences: | ||
|
||
|
||
type: D | ||
Functional sequences reported by digger but not by IMGT: | ||
|
||
Functional sequences reported by IMGT but not by digger: | ||
|
||
Functional sequences reported by both IMGT and digger but with different sequences: | ||
|
||
|
||
type: J | ||
Functional sequences reported by digger but not by IMGT: | ||
1014594,1014646 imgt_match: IGHJ2*01 imgt_func: ORF digger_match: IGHJ2*01 digger_func: functional notes: | ||
...currently listed in the IMGT reference set as functional (but annotated as ORF/non-canonical heptamer in this assembly) | ||
|
||
Functional sequences reported by IMGT but not by digger: | ||
|
||
Functional sequences reported by both IMGT and digger but with different sequences: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
mkdir work | ||
cd work | ||
extract_refs -L IGH "Homo sapiens" | ||
cat Homo_sapiens_IGHV.fasta Homo_sapiens_IGHD.fasta Homo_sapiens_IGHJ.fasta > Homo_sapiens_IGHVDJ.fasta | ||
|
||
parse_imgt_annotations --save_sequence IMGT000035.fasta "https://www.imgt.org/ligmdb/view?format=IMGT&id=BK063799" IMGT000035_genes.csv IGH | ||
|
||
head -n 1 IMGT000035.fasta >IMGT000035_trunc.fasta | ||
at_coords IMGT000035.fasta 1 15000 >>IMGT000035_trunc.fasta | ||
|
||
digger IMGT000035_trunc.fasta -keepwf -v_ref Homo_sapiens_IGHV.fasta -d_ref Homo_sapiens_IGHD.fasta -j_ref Homo_sapiens_IGHJ.fasta -v_ref_gapped Homo_sapiens_IGHV_gapped.fasta -ref imgt,Homo_sapiens_IGHVDJ.fasta -species human IMGT000035.csv | ||
|
||
cp IMGT000035_trunc.csv .. | ||
|
||
cd .. |