Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generate biomarker from the result of a momix pipeline #64

Merged
merged 2 commits into from
Feb 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/biomarkers/serializers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from rest_framework import serializers
from genes.serializers import GeneGEMWithType
from user_files.models_choices import MoleculeType
from .models import Biomarker, MRNAIdentifier, MethylationIdentifier, CNAIdentifier, MiRNAIdentifier, MoleculeIdentifier
from tags.serializers import TagSerializer
Expand Down Expand Up @@ -164,5 +165,14 @@ def get_was_already_used(ins: Biomarker) -> bool:
This avoids the user to edit a Biomarker that was already used and generate inconsistencies.
"""
return ins.was_already_used


class BiomarkerFromCorrelationAnalysisSerializer(serializers.Serializer):
"""
Serializer for BiomarkerFromCorrelationAnalysis, including correlation analysis ID, gene GEM list, and correlation threshold.
"""
correlation_analysis_id = serializers.IntegerField()
gene_gem_list = GeneGEMWithType(many=True, required=False)
correlation_threshold = serializers.IntegerField(required=False)


1 change: 1 addition & 0 deletions src/biomarkers/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@
path('methylation-sites', views.MethylationSites.as_view(), name='methylation_sites'),
path('methylation-sites-finder', views.MethylationSites.as_view(), name='methylation_sites_finder'),
path('biomarker-molecules', views.BiomarkerMolecules.as_view(), name='biomarker_molecules'),
path('biomarker-correlation-api', views.BiomarkerCorrelationAPIView.as_view(), name='biomarker_correlation_api'),
]
23 changes: 22 additions & 1 deletion src/biomarkers/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,17 @@
from rest_framework.request import Request
from rest_framework.response import Response
from rest_framework.views import APIView
from api_service.models import Experiment
from api_service.mrna_service import global_mrna_service
from biomarkers.models import Biomarker, BiomarkerState, BiomarkerOrigin, MoleculeIdentifier
from biomarkers.serializers import BiomarkerSerializer, MoleculeIdentifierSerializer, \
from biomarkers.serializers import BiomarkerFromCorrelationAnalysisSerializer, BiomarkerSerializer, MoleculeIdentifierSerializer, \
BiomarkerSimpleSerializer, BiomarkerSimpleUpdateSerializer
from common.pagination import StandardResultsSetPagination
from common.response import generate_json_response_or_404
from django.db.models import QuerySet, Q



class BiomarkerList(generics.ListAPIView):
"""REST endpoint: list for Biomarker model"""

Expand Down Expand Up @@ -276,3 +278,22 @@ def get_queryset(self):
filter_backends = [filters.OrderingFilter, filters.SearchFilter, DjangoFilterBackend]
search_fields = ['identifier']
ordering_fields = ['identifier']


class BiomarkerCorrelationAPIView(APIView):
"""Validates the request data and retrieves the corresponding experiment."""

def post(self, request, *args, **kwargs):
# Instantiate the serializer with the received data
serializer = BiomarkerFromCorrelationAnalysisSerializer(data=request.data)

# Validate the data (returns a 400 error if the structure is incorrect)
serializer.is_valid(raise_exception=True)
validated_data = serializer.validated_data

# Here the Biomarker is created validating which parameters were sent from the frontend
cor_analysis = get_object_or_404(Experiment, pk=validated_data['correlation_analysis_id'])

return Response({
"ok": True,
})
6 changes: 6 additions & 0 deletions src/genes/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,9 @@ class GeneForResultTableSerializer(serializers.ModelSerializer):
class Meta:
model = Gene
fields = ['type', 'chromosome', 'start', 'end', 'description']

class GeneGEMWithType(serializers.Serializer):
"""Serializer for GeneGEMWithType"""
id = serializers.IntegerField()
molecule_type = serializers.IntegerField()

Loading