-
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
5917422
commit 5397fc1
Showing
5 changed files
with
57 additions
and
4 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
src/main/resources/static/migration/examples/group-alignments-new.txt
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
query NCBI2PDB{ | ||
query UP_GROUP{ | ||
group_alignments( | ||
group: MATCHING_UNIPROT_ACCESSION | ||
groupId: "P01112" | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/resources/static/migration/examples/group-alignments-old
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
query NCBI2PDB{ | ||
query UP_GROUP{ | ||
group_alignment( | ||
group: matching_uniprot_accession | ||
groupId: "P01112" | ||
|
12 changes: 12 additions & 0 deletions
12
src/main/resources/static/migration/examples/group-annotations-histogram-new.txt
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,12 @@ | ||
query UP_GROUP_FEATURES{ | ||
group_annotations_summary( | ||
group: MATCHING_UNIPROT_ACCESSION | ||
groupId: "P01112" | ||
sources: [PDB_INSTANCE] | ||
) { | ||
target_id | ||
features{ | ||
type | ||
} | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
src/main/resources/static/migration/examples/group-annotations-histogram-old.txt
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,13 @@ | ||
query UP_GROUP_FEATURES{ | ||
group_annotations( | ||
group: matching_uniprot_accession | ||
groupId: "P01112" | ||
sources: [PDB_INSTANCE] | ||
histogram: true | ||
) { | ||
target_id | ||
features{ | ||
type | ||
} | ||
} | ||
} |
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